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

outscale.NetAccessPoint

Explore with Pulumi AI

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

    Manages 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

    Required resources

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const net01 = new outscale.Net("net01", {ipRange: "10.0.0.0/16"});
    const routeTable01 = new outscale.RouteTable("routeTable01", {netId: net01.netId});
    
    import pulumi
    import pulumi_outscale as outscale
    
    net01 = outscale.Net("net01", ip_range="10.0.0.0/16")
    route_table01 = outscale.RouteTable("routeTable01", net_id=net01.net_id)
    
    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 {
    		net01, err := outscale.NewNet(ctx, "net01", &outscale.NetArgs{
    			IpRange: pulumi.String("10.0.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = outscale.NewRouteTable(ctx, "routeTable01", &outscale.RouteTableArgs{
    			NetId: net01.NetId,
    		})
    		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 net01 = new Outscale.Net("net01", new()
        {
            IpRange = "10.0.0.0/16",
        });
    
        var routeTable01 = new Outscale.RouteTable("routeTable01", new()
        {
            NetId = net01.NetId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.Net;
    import com.pulumi.outscale.NetArgs;
    import com.pulumi.outscale.RouteTable;
    import com.pulumi.outscale.RouteTableArgs;
    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) {
            var net01 = new Net("net01", NetArgs.builder()
                .ipRange("10.0.0.0/16")
                .build());
    
            var routeTable01 = new RouteTable("routeTable01", RouteTableArgs.builder()
                .netId(net01.netId())
                .build());
    
        }
    }
    
    resources:
      net01:
        type: outscale:Net
        properties:
          ipRange: 10.0.0.0/16
      routeTable01:
        type: outscale:RouteTable
        properties:
          netId: ${net01.netId}
    

    Create a Net access point

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const netAccessPoint01 = new outscale.NetAccessPoint("netAccessPoint01", {
        netId: outscale_net.net01.net_id,
        routeTableIds: [outscale_route_table.route_table01.route_table_id],
        serviceName: "com.outscale.eu-west-2.api",
        tags: [{
            key: "name",
            value: "terraform-net-access-point",
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    net_access_point01 = outscale.NetAccessPoint("netAccessPoint01",
        net_id=outscale_net["net01"]["net_id"],
        route_table_ids=[outscale_route_table["route_table01"]["route_table_id"]],
        service_name="com.outscale.eu-west-2.api",
        tags=[{
            "key": "name",
            "value": "terraform-net-access-point",
        }])
    
    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.NewNetAccessPoint(ctx, "netAccessPoint01", &outscale.NetAccessPointArgs{
    			NetId: pulumi.Any(outscale_net.Net01.Net_id),
    			RouteTableIds: pulumi.StringArray{
    				outscale_route_table.Route_table01.Route_table_id,
    			},
    			ServiceName: pulumi.String("com.outscale.eu-west-2.api"),
    			Tags: outscale.NetAccessPointTagArray{
    				&outscale.NetAccessPointTagArgs{
    					Key:   pulumi.String("name"),
    					Value: pulumi.String("terraform-net-access-point"),
    				},
    			},
    		})
    		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 = new Outscale.NetAccessPoint("netAccessPoint01", new()
        {
            NetId = outscale_net.Net01.Net_id,
            RouteTableIds = new[]
            {
                outscale_route_table.Route_table01.Route_table_id,
            },
            ServiceName = "com.outscale.eu-west-2.api",
            Tags = new[]
            {
                new Outscale.Inputs.NetAccessPointTagArgs
                {
                    Key = "name",
                    Value = "terraform-net-access-point",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.NetAccessPoint;
    import com.pulumi.outscale.NetAccessPointArgs;
    import com.pulumi.outscale.inputs.NetAccessPointTagArgs;
    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) {
            var netAccessPoint01 = new NetAccessPoint("netAccessPoint01", NetAccessPointArgs.builder()
                .netId(outscale_net.net01().net_id())
                .routeTableIds(outscale_route_table.route_table01().route_table_id())
                .serviceName("com.outscale.eu-west-2.api")
                .tags(NetAccessPointTagArgs.builder()
                    .key("name")
                    .value("terraform-net-access-point")
                    .build())
                .build());
    
        }
    }
    
    resources:
      netAccessPoint01:
        type: outscale:NetAccessPoint
        properties:
          netId: ${outscale_net.net01.net_id}
          routeTableIds:
            - ${outscale_route_table.route_table01.route_table_id}
          serviceName: com.outscale.eu-west-2.api
          tags:
            - key: name
              value: terraform-net-access-point
    

    Create NetAccessPoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NetAccessPoint(name: string, args: NetAccessPointArgs, opts?: CustomResourceOptions);
    @overload
    def NetAccessPoint(resource_name: str,
                       args: NetAccessPointArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetAccessPoint(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       net_id: Optional[str] = None,
                       service_name: Optional[str] = None,
                       outscale_net_access_point_id: Optional[str] = None,
                       route_table_ids: Optional[Sequence[str]] = None,
                       tags: Optional[Sequence[NetAccessPointTagArgs]] = None)
    func NewNetAccessPoint(ctx *Context, name string, args NetAccessPointArgs, opts ...ResourceOption) (*NetAccessPoint, error)
    public NetAccessPoint(string name, NetAccessPointArgs args, CustomResourceOptions? opts = null)
    public NetAccessPoint(String name, NetAccessPointArgs args)
    public NetAccessPoint(String name, NetAccessPointArgs args, CustomResourceOptions options)
    
    type: outscale:NetAccessPoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NetAccessPointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NetAccessPointArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NetAccessPointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetAccessPointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetAccessPointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var netAccessPointResource = new Outscale.NetAccessPoint("netAccessPointResource", new()
    {
        NetId = "string",
        ServiceName = "string",
        OutscaleNetAccessPointId = "string",
        RouteTableIds = new[]
        {
            "string",
        },
        Tags = new[]
        {
            new Outscale.Inputs.NetAccessPointTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := outscale.NewNetAccessPoint(ctx, "netAccessPointResource", &outscale.NetAccessPointArgs{
    NetId: pulumi.String("string"),
    ServiceName: pulumi.String("string"),
    OutscaleNetAccessPointId: pulumi.String("string"),
    RouteTableIds: pulumi.StringArray{
    pulumi.String("string"),
    },
    Tags: .NetAccessPointTagArray{
    &.NetAccessPointTagArgs{
    Key: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    })
    
    var netAccessPointResource = new NetAccessPoint("netAccessPointResource", NetAccessPointArgs.builder()
        .netId("string")
        .serviceName("string")
        .outscaleNetAccessPointId("string")
        .routeTableIds("string")
        .tags(NetAccessPointTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    net_access_point_resource = outscale.NetAccessPoint("netAccessPointResource",
        net_id="string",
        service_name="string",
        outscale_net_access_point_id="string",
        route_table_ids=["string"],
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const netAccessPointResource = new outscale.NetAccessPoint("netAccessPointResource", {
        netId: "string",
        serviceName: "string",
        outscaleNetAccessPointId: "string",
        routeTableIds: ["string"],
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: outscale:NetAccessPoint
    properties:
        netId: string
        outscaleNetAccessPointId: string
        routeTableIds:
            - string
        serviceName: string
        tags:
            - key: string
              value: string
    

    NetAccessPoint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NetAccessPoint resource accepts the following input properties:

    NetId string
    The ID of the Net.
    ServiceName string
    The name of the service (in the format com.outscale.region.service).
    OutscaleNetAccessPointId string
    RouteTableIds List<string>
    One or more IDs of route tables to use for the connection.
    Tags List<NetAccessPointTag>
    A tag to add to this resource. You can specify this argument several times.
    NetId string
    The ID of the Net.
    ServiceName string
    The name of the service (in the format com.outscale.region.service).
    OutscaleNetAccessPointId string
    RouteTableIds []string
    One or more IDs of route tables to use for the connection.
    Tags []NetAccessPointTagArgs
    A tag to add to this resource. You can specify this argument several times.
    netId String
    The ID of the Net.
    serviceName String
    The name of the service (in the format com.outscale.region.service).
    outscaleNetAccessPointId String
    routeTableIds List<String>
    One or more IDs of route tables to use for the connection.
    tags List<NetAccessPointTag>
    A tag to add to this resource. You can specify this argument several times.
    netId string
    The ID of the Net.
    serviceName string
    The name of the service (in the format com.outscale.region.service).
    outscaleNetAccessPointId string
    routeTableIds string[]
    One or more IDs of route tables to use for the connection.
    tags NetAccessPointTag[]
    A tag to add to this resource. You can specify this argument several times.
    net_id str
    The ID of the Net.
    service_name str
    The name of the service (in the format com.outscale.region.service).
    outscale_net_access_point_id str
    route_table_ids Sequence[str]
    One or more IDs of route tables to use for the connection.
    tags Sequence[NetAccessPointTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    netId String
    The ID of the Net.
    serviceName String
    The name of the service (in the format com.outscale.region.service).
    outscaleNetAccessPointId String
    routeTableIds List<String>
    One or more IDs of route tables to use for the connection.
    tags List<Property Map>
    A tag to add to this resource. You can specify this argument several times.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NetAccessPoint resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    NetAccessPointId string
    The ID of the Net access point.
    RequestId string
    State string
    The state of the Net access point (pending | available | deleting | deleted).
    Id string
    The provider-assigned unique ID for this managed resource.
    NetAccessPointId string
    The ID of the Net access point.
    RequestId string
    State string
    The state of the Net access point (pending | available | deleting | deleted).
    id String
    The provider-assigned unique ID for this managed resource.
    netAccessPointId String
    The ID of the Net access point.
    requestId String
    state String
    The state of the Net access point (pending | available | deleting | deleted).
    id string
    The provider-assigned unique ID for this managed resource.
    netAccessPointId string
    The ID of the Net access point.
    requestId string
    state string
    The state of the Net access point (pending | available | deleting | deleted).
    id str
    The provider-assigned unique ID for this managed resource.
    net_access_point_id str
    The ID of the Net access point.
    request_id str
    state str
    The state of the Net access point (pending | available | deleting | deleted).
    id String
    The provider-assigned unique ID for this managed resource.
    netAccessPointId String
    The ID of the Net access point.
    requestId String
    state String
    The state of the Net access point (pending | available | deleting | deleted).

    Look up Existing NetAccessPoint Resource

    Get an existing NetAccessPoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NetAccessPointState, opts?: CustomResourceOptions): NetAccessPoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            net_access_point_id: Optional[str] = None,
            net_id: Optional[str] = None,
            outscale_net_access_point_id: Optional[str] = None,
            request_id: Optional[str] = None,
            route_table_ids: Optional[Sequence[str]] = None,
            service_name: Optional[str] = None,
            state: Optional[str] = None,
            tags: Optional[Sequence[NetAccessPointTagArgs]] = None) -> NetAccessPoint
    func GetNetAccessPoint(ctx *Context, name string, id IDInput, state *NetAccessPointState, opts ...ResourceOption) (*NetAccessPoint, error)
    public static NetAccessPoint Get(string name, Input<string> id, NetAccessPointState? state, CustomResourceOptions? opts = null)
    public static NetAccessPoint get(String name, Output<String> id, NetAccessPointState state, CustomResourceOptions options)
    resources:  _:    type: outscale:NetAccessPoint    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    NetAccessPointId string
    The ID of the Net access point.
    NetId string
    The ID of the Net.
    OutscaleNetAccessPointId string
    RequestId string
    RouteTableIds List<string>
    One or more IDs of route tables to use for the connection.
    ServiceName string
    The name of the service (in the format com.outscale.region.service).
    State string
    The state of the Net access point (pending | available | deleting | deleted).
    Tags List<NetAccessPointTag>
    A tag to add to this resource. You can specify this argument several times.
    NetAccessPointId string
    The ID of the Net access point.
    NetId string
    The ID of the Net.
    OutscaleNetAccessPointId string
    RequestId string
    RouteTableIds []string
    One or more IDs of route tables to use for the connection.
    ServiceName string
    The name of the service (in the format com.outscale.region.service).
    State string
    The state of the Net access point (pending | available | deleting | deleted).
    Tags []NetAccessPointTagArgs
    A tag to add to this resource. You can specify this argument several times.
    netAccessPointId String
    The ID of the Net access point.
    netId String
    The ID of the Net.
    outscaleNetAccessPointId String
    requestId String
    routeTableIds List<String>
    One or more IDs of route tables to use for the connection.
    serviceName String
    The name of the service (in the format com.outscale.region.service).
    state String
    The state of the Net access point (pending | available | deleting | deleted).
    tags List<NetAccessPointTag>
    A tag to add to this resource. You can specify this argument several times.
    netAccessPointId string
    The ID of the Net access point.
    netId string
    The ID of the Net.
    outscaleNetAccessPointId string
    requestId string
    routeTableIds string[]
    One or more IDs of route tables to use for the connection.
    serviceName string
    The name of the service (in the format com.outscale.region.service).
    state string
    The state of the Net access point (pending | available | deleting | deleted).
    tags NetAccessPointTag[]
    A tag to add to this resource. You can specify this argument several times.
    net_access_point_id str
    The ID of the Net access point.
    net_id str
    The ID of the Net.
    outscale_net_access_point_id str
    request_id str
    route_table_ids Sequence[str]
    One or more IDs of route tables to use for the connection.
    service_name str
    The name of the service (in the format com.outscale.region.service).
    state str
    The state of the Net access point (pending | available | deleting | deleted).
    tags Sequence[NetAccessPointTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    netAccessPointId String
    The ID of the Net access point.
    netId String
    The ID of the Net.
    outscaleNetAccessPointId String
    requestId String
    routeTableIds List<String>
    One or more IDs of route tables to use for the connection.
    serviceName String
    The name of the service (in the format com.outscale.region.service).
    state String
    The state of the Net access point (pending | available | deleting | deleted).
    tags List<Property Map>
    A tag to add to this resource. You can specify this argument several times.

    Supporting Types

    NetAccessPointTag, NetAccessPointTagArgs

    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.

    Import

    A Net access point can be imported using its ID. For example:

    console

    $ pulumi import outscale:index/netAccessPoint:NetAccessPoint ImportedNetAccessPoint vpce-87654321
    

    To learn more about importing existing cloud resources, see Importing resources.

    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