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

outscale.getNetAccessPoints

Explore with Pulumi AI

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

    Provides information about Net access points.

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

    Example Usage

    List Net access points

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const netAccessPoints01 = outscale.getNetAccessPoints({
        filters: [{
            name: "net_access_point_ids",
            values: [
                "vpce-12345678",
                "vpce-12345679",
            ],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    net_access_points01 = outscale.get_net_access_points(filters=[{
        "name": "net_access_point_ids",
        "values": [
            "vpce-12345678",
            "vpce-12345679",
        ],
    }])
    
    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.GetNetAccessPoints(ctx, &outscale.GetNetAccessPointsArgs{
    			Filters: []outscale.GetNetAccessPointsFilter{
    				{
    					Name: "net_access_point_ids",
    					Values: []string{
    						"vpce-12345678",
    						"vpce-12345679",
    					},
    				},
    			},
    		}, 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 netAccessPoints01 = Outscale.GetNetAccessPoints.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetNetAccessPointsFilterInputArgs
                {
                    Name = "net_access_point_ids",
                    Values = new[]
                    {
                        "vpce-12345678",
                        "vpce-12345679",
                    },
                },
            },
        });
    
    });
    
    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.GetNetAccessPointsArgs;
    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 netAccessPoints01 = OutscaleFunctions.getNetAccessPoints(GetNetAccessPointsArgs.builder()
                .filters(GetNetAccessPointsFilterArgs.builder()
                    .name("net_access_point_ids")
                    .values(                
                        "vpce-12345678",
                        "vpce-12345679")
                    .build())
                .build());
    
        }
    }
    
    variables:
      netAccessPoints01:
        fn::invoke:
          function: outscale:getNetAccessPoints
          arguments:
            filters:
              - name: net_access_point_ids
                values:
                  - vpce-12345678
                  - vpce-12345679
    

    List Net access points according to their Net and state

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const netAccessPoints02 = outscale.getNetAccessPoints({
        filters: [
            {
                name: "net_ids",
                values: ["vpc-12345678"],
            },
            {
                name: "states",
                values: ["available"],
            },
        ],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    net_access_points02 = outscale.get_net_access_points(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.GetNetAccessPoints(ctx, &outscale.GetNetAccessPointsArgs{
    			Filters: []outscale.GetNetAccessPointsFilter{
    				{
    					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 netAccessPoints02 = Outscale.GetNetAccessPoints.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetNetAccessPointsFilterInputArgs
                {
                    Name = "net_ids",
                    Values = new[]
                    {
                        "vpc-12345678",
                    },
                },
                new Outscale.Inputs.GetNetAccessPointsFilterInputArgs
                {
                    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.GetNetAccessPointsArgs;
    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 netAccessPoints02 = OutscaleFunctions.getNetAccessPoints(GetNetAccessPointsArgs.builder()
                .filters(            
                    GetNetAccessPointsFilterArgs.builder()
                        .name("net_ids")
                        .values("vpc-12345678")
                        .build(),
                    GetNetAccessPointsFilterArgs.builder()
                        .name("states")
                        .values("available")
                        .build())
                .build());
    
        }
    }
    
    variables:
      netAccessPoints02:
        fn::invoke:
          function: outscale:getNetAccessPoints
          arguments:
            filters:
              - name: net_ids
                values:
                  - vpc-12345678
              - name: states
                values:
                  - available
    

    Using getNetAccessPoints

    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 getNetAccessPoints(args: GetNetAccessPointsArgs, opts?: InvokeOptions): Promise<GetNetAccessPointsResult>
    function getNetAccessPointsOutput(args: GetNetAccessPointsOutputArgs, opts?: InvokeOptions): Output<GetNetAccessPointsResult>
    def get_net_access_points(filters: Optional[Sequence[GetNetAccessPointsFilter]] = None,
                              id: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetNetAccessPointsResult
    def get_net_access_points_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetAccessPointsFilterArgs]]]] = None,
                              id: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetNetAccessPointsResult]
    func GetNetAccessPoints(ctx *Context, args *GetNetAccessPointsArgs, opts ...InvokeOption) (*GetNetAccessPointsResult, error)
    func GetNetAccessPointsOutput(ctx *Context, args *GetNetAccessPointsOutputArgs, opts ...InvokeOption) GetNetAccessPointsResultOutput

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

    public static class GetNetAccessPoints 
    {
        public static Task<GetNetAccessPointsResult> InvokeAsync(GetNetAccessPointsArgs args, InvokeOptions? opts = null)
        public static Output<GetNetAccessPointsResult> Invoke(GetNetAccessPointsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetNetAccessPointsResult> getNetAccessPoints(GetNetAccessPointsArgs args, InvokeOptions options)
    public static Output<GetNetAccessPointsResult> getNetAccessPoints(GetNetAccessPointsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getNetAccessPoints:getNetAccessPoints
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetNetAccessPointsFilter>
    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 []GetNetAccessPointsFilter
    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<GetNetAccessPointsFilter>
    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 GetNetAccessPointsFilter[]
    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[GetNetAccessPointsFilter]
    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

    getNetAccessPoints Result

    The following output properties are available:

    id String
    netAccessPoints List<Property Map>
    One or more Net access points.
    requestId String
    filters List<Property Map>

    Supporting Types

    GetNetAccessPointsFilter

    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>

    GetNetAccessPointsNetAccessPoint

    NetAccessPointId string
    The ID of the Net access point.
    NetId string
    The ID of the Net with which the Net access point is associated.
    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<GetNetAccessPointsNetAccessPointTag>
    One or more tags associated with the Net access point.
    NetAccessPointId string
    The ID of the Net access point.
    NetId string
    The ID of the Net with which the Net access point is associated.
    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 []GetNetAccessPointsNetAccessPointTag
    One or more tags associated with the Net access point.
    netAccessPointId String
    The ID of the Net access point.
    netId String
    The ID of the Net with which the Net access point is associated.
    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<GetNetAccessPointsNetAccessPointTag>
    One or more tags associated with the Net access point.
    netAccessPointId string
    The ID of the Net access point.
    netId string
    The ID of the Net with which the Net access point is associated.
    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 GetNetAccessPointsNetAccessPointTag[]
    One or more tags associated with the Net access point.
    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.
    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[GetNetAccessPointsNetAccessPointTag]
    One or more tags associated with the Net access point.
    netAccessPointId String
    The ID of the Net access point.
    netId String
    The ID of the Net with which the Net access point is associated.
    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.

    GetNetAccessPointsNetAccessPointTag

    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