1. Packages
  2. Outscale Provider
  3. API Docs
  4. getNetAccessPoint
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getNetAccessPoint

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about a Net access point.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    List a Net access point

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const netAccessPoint01 = outscale.getNetAccessPoint({
        filters: [{
            name: "net_access_point_ids",
            values: ["vpce-12345678"],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    net_access_point01 = outscale.get_net_access_point(filters=[{
        "name": "net_access_point_ids",
        "values": ["vpce-12345678"],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.LookupNetAccessPoint(ctx, &outscale.LookupNetAccessPointArgs{
    			Filters: []outscale.GetNetAccessPointFilter{
    				{
    					Name: "net_access_point_ids",
    					Values: []string{
    						"vpce-12345678",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var netAccessPoint01 = Outscale.GetNetAccessPoint.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetNetAccessPointFilterInputArgs
                {
                    Name = "net_access_point_ids",
                    Values = new[]
                    {
                        "vpce-12345678",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetNetAccessPointArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var netAccessPoint01 = OutscaleFunctions.getNetAccessPoint(GetNetAccessPointArgs.builder()
                .filters(GetNetAccessPointFilterArgs.builder()
                    .name("net_access_point_ids")
                    .values("vpce-12345678")
                    .build())
                .build());
    
        }
    }
    
    variables:
      netAccessPoint01:
        fn::invoke:
          function: outscale:getNetAccessPoint
          arguments:
            filters:
              - name: net_access_point_ids
                values:
                  - vpce-12345678
    

    List a Net access point according to its Net and state

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const netAccessPoint02 = outscale.getNetAccessPoint({
        filters: [
            {
                name: "net_ids",
                values: ["vpc-12345678"],
            },
            {
                name: "states",
                values: ["available"],
            },
        ],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    net_access_point02 = outscale.get_net_access_point(filters=[
        {
            "name": "net_ids",
            "values": ["vpc-12345678"],
        },
        {
            "name": "states",
            "values": ["available"],
        },
    ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.LookupNetAccessPoint(ctx, &outscale.LookupNetAccessPointArgs{
    			Filters: []outscale.GetNetAccessPointFilter{
    				{
    					Name: "net_ids",
    					Values: []string{
    						"vpc-12345678",
    					},
    				},
    				{
    					Name: "states",
    					Values: []string{
    						"available",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var netAccessPoint02 = Outscale.GetNetAccessPoint.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetNetAccessPointFilterInputArgs
                {
                    Name = "net_ids",
                    Values = new[]
                    {
                        "vpc-12345678",
                    },
                },
                new Outscale.Inputs.GetNetAccessPointFilterInputArgs
                {
                    Name = "states",
                    Values = new[]
                    {
                        "available",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetNetAccessPointArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var netAccessPoint02 = OutscaleFunctions.getNetAccessPoint(GetNetAccessPointArgs.builder()
                .filters(            
                    GetNetAccessPointFilterArgs.builder()
                        .name("net_ids")
                        .values("vpc-12345678")
                        .build(),
                    GetNetAccessPointFilterArgs.builder()
                        .name("states")
                        .values("available")
                        .build())
                .build());
    
        }
    }
    
    variables:
      netAccessPoint02:
        fn::invoke:
          function: outscale:getNetAccessPoint
          arguments:
            filters:
              - name: net_ids
                values:
                  - vpc-12345678
              - name: states
                values:
                  - available
    

    Using getNetAccessPoint

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getNetAccessPoint(args: GetNetAccessPointArgs, opts?: InvokeOptions): Promise<GetNetAccessPointResult>
    function getNetAccessPointOutput(args: GetNetAccessPointOutputArgs, opts?: InvokeOptions): Output<GetNetAccessPointResult>
    def get_net_access_point(filters: Optional[Sequence[GetNetAccessPointFilter]] = None,
                             id: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetNetAccessPointResult
    def get_net_access_point_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetAccessPointFilterArgs]]]] = None,
                             id: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetNetAccessPointResult]
    func LookupNetAccessPoint(ctx *Context, args *LookupNetAccessPointArgs, opts ...InvokeOption) (*LookupNetAccessPointResult, error)
    func LookupNetAccessPointOutput(ctx *Context, args *LookupNetAccessPointOutputArgs, opts ...InvokeOption) LookupNetAccessPointResultOutput

    > Note: This function is named LookupNetAccessPoint in the Go SDK.

    public static class GetNetAccessPoint 
    {
        public static Task<GetNetAccessPointResult> InvokeAsync(GetNetAccessPointArgs args, InvokeOptions? opts = null)
        public static Output<GetNetAccessPointResult> Invoke(GetNetAccessPointInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetNetAccessPointResult> getNetAccessPoint(GetNetAccessPointArgs args, InvokeOptions options)
    public static Output<GetNetAccessPointResult> getNetAccessPoint(GetNetAccessPointArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getNetAccessPoint:getNetAccessPoint
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetNetAccessPointFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    Filters []GetNetAccessPointFilter
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    filters List<GetNetAccessPointFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    filters GetNetAccessPointFilter[]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id string
    filters Sequence[GetNetAccessPointFilter]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id str
    filters List<Property Map>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String

    getNetAccessPoint Result

    The following output properties are available:

    Id string
    NetAccessPointId string
    The ID of the Net access point.
    NetId string
    The ID of the Net with which the Net access point is associated.
    RequestId string
    RouteTableIds List<string>
    The ID of the route tables associated with the Net access point.
    ServiceName string
    The name of the service with which the Net access point is associated.
    State string
    The state of the Net access point (pending | available | deleting | deleted).
    Tags List<GetNetAccessPointTag>
    One or more tags associated with the Net access point.
    Filters List<GetNetAccessPointFilter>
    Id string
    NetAccessPointId string
    The ID of the Net access point.
    NetId string
    The ID of the Net with which the Net access point is associated.
    RequestId string
    RouteTableIds []string
    The ID of the route tables associated with the Net access point.
    ServiceName string
    The name of the service with which the Net access point is associated.
    State string
    The state of the Net access point (pending | available | deleting | deleted).
    Tags []GetNetAccessPointTag
    One or more tags associated with the Net access point.
    Filters []GetNetAccessPointFilter
    id String
    netAccessPointId String
    The ID of the Net access point.
    netId String
    The ID of the Net with which the Net access point is associated.
    requestId String
    routeTableIds List<String>
    The ID of the route tables associated with the Net access point.
    serviceName String
    The name of the service with which the Net access point is associated.
    state String
    The state of the Net access point (pending | available | deleting | deleted).
    tags List<GetNetAccessPointTag>
    One or more tags associated with the Net access point.
    filters List<GetNetAccessPointFilter>
    id string
    netAccessPointId string
    The ID of the Net access point.
    netId string
    The ID of the Net with which the Net access point is associated.
    requestId string
    routeTableIds string[]
    The ID of the route tables associated with the Net access point.
    serviceName string
    The name of the service with which the Net access point is associated.
    state string
    The state of the Net access point (pending | available | deleting | deleted).
    tags GetNetAccessPointTag[]
    One or more tags associated with the Net access point.
    filters GetNetAccessPointFilter[]
    id str
    net_access_point_id str
    The ID of the Net access point.
    net_id str
    The ID of the Net with which the Net access point is associated.
    request_id str
    route_table_ids Sequence[str]
    The ID of the route tables associated with the Net access point.
    service_name str
    The name of the service with which the Net access point is associated.
    state str
    The state of the Net access point (pending | available | deleting | deleted).
    tags Sequence[GetNetAccessPointTag]
    One or more tags associated with the Net access point.
    filters Sequence[GetNetAccessPointFilter]
    id String
    netAccessPointId String
    The ID of the Net access point.
    netId String
    The ID of the Net with which the Net access point is associated.
    requestId String
    routeTableIds List<String>
    The ID of the route tables associated with the Net access point.
    serviceName String
    The name of the service with which the Net access point is associated.
    state String
    The state of the Net access point (pending | available | deleting | deleted).
    tags List<Property Map>
    One or more tags associated with the Net access point.
    filters List<Property Map>

    Supporting Types

    GetNetAccessPointFilter

    Name string
    Values List<string>
    Name string
    Values []string
    name String
    values List<String>
    name string
    values string[]
    name str
    values Sequence[str]
    name String
    values List<String>

    GetNetAccessPointTag

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale