outscale.NetAccessPoint
Explore with Pulumi AI
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:
- Net
Id string - The ID of the Net.
- Service
Name string - The name of the service (in the format
com.outscale.region.service
). - Outscale
Net stringAccess Point Id - Route
Table List<string>Ids - One or more IDs of route tables to use for the connection.
- List<Net
Access Point Tag> - A tag to add to this resource. You can specify this argument several times.
- Net
Id string - The ID of the Net.
- Service
Name string - The name of the service (in the format
com.outscale.region.service
). - Outscale
Net stringAccess Point Id - Route
Table []stringIds - One or more IDs of route tables to use for the connection.
- []Net
Access Point Tag Args - A tag to add to this resource. You can specify this argument several times.
- net
Id String - The ID of the Net.
- service
Name String - The name of the service (in the format
com.outscale.region.service
). - outscale
Net StringAccess Point Id - route
Table List<String>Ids - One or more IDs of route tables to use for the connection.
- List<Net
Access Point Tag> - A tag to add to this resource. You can specify this argument several times.
- net
Id string - The ID of the Net.
- service
Name string - The name of the service (in the format
com.outscale.region.service
). - outscale
Net stringAccess Point Id - route
Table string[]Ids - One or more IDs of route tables to use for the connection.
- Net
Access Point Tag[] - 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_ straccess_ point_ id - route_
table_ Sequence[str]ids - One or more IDs of route tables to use for the connection.
- Sequence[Net
Access Point Tag Args] - A tag to add to this resource. You can specify this argument several times.
- net
Id String - The ID of the Net.
- service
Name String - The name of the service (in the format
com.outscale.region.service
). - outscale
Net StringAccess Point Id - route
Table List<String>Ids - One or more IDs of route tables to use for the connection.
- 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.
- Net
Access stringPoint Id - The ID of the Net access point.
- Request
Id 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.
- Net
Access stringPoint Id - The ID of the Net access point.
- Request
Id 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.
- net
Access StringPoint Id - The ID of the Net access point.
- request
Id 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.
- net
Access stringPoint Id - The ID of the Net access point.
- request
Id 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_ strpoint_ id - 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.
- net
Access StringPoint Id - The ID of the Net access point.
- request
Id 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.
- Net
Access stringPoint Id - The ID of the Net access point.
- Net
Id string - The ID of the Net.
- Outscale
Net stringAccess Point Id - Request
Id string - Route
Table List<string>Ids - One or more IDs of route tables to use for the connection.
- Service
Name 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
). - List<Net
Access Point Tag> - A tag to add to this resource. You can specify this argument several times.
- Net
Access stringPoint Id - The ID of the Net access point.
- Net
Id string - The ID of the Net.
- Outscale
Net stringAccess Point Id - Request
Id string - Route
Table []stringIds - One or more IDs of route tables to use for the connection.
- Service
Name 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
). - []Net
Access Point Tag Args - A tag to add to this resource. You can specify this argument several times.
- net
Access StringPoint Id - The ID of the Net access point.
- net
Id String - The ID of the Net.
- outscale
Net StringAccess Point Id - request
Id String - route
Table List<String>Ids - One or more IDs of route tables to use for the connection.
- service
Name 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
). - List<Net
Access Point Tag> - A tag to add to this resource. You can specify this argument several times.
- net
Access stringPoint Id - The ID of the Net access point.
- net
Id string - The ID of the Net.
- outscale
Net stringAccess Point Id - request
Id string - route
Table string[]Ids - One or more IDs of route tables to use for the connection.
- service
Name 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
). - Net
Access Point Tag[] - A tag to add to this resource. You can specify this argument several times.
- net_
access_ strpoint_ id - The ID of the Net access point.
- net_
id str - The ID of the Net.
- outscale_
net_ straccess_ point_ id - request_
id str - route_
table_ Sequence[str]ids - 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
). - Sequence[Net
Access Point Tag Args] - A tag to add to this resource. You can specify this argument several times.
- net
Access StringPoint Id - The ID of the Net access point.
- net
Id String - The ID of the Net.
- outscale
Net StringAccess Point Id - request
Id String - route
Table List<String>Ids - One or more IDs of route tables to use for the connection.
- service
Name 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
). - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
Supporting Types
NetAccessPointTag, NetAccessPointTagArgs
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.