outscale.NetAttributes
Explore with Pulumi AI
Manages the attributes of a Net.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resource
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const net01 = new outscale.Net("net01", {ipRange: "10.0.0.0/16"});
import pulumi
import pulumi_outscale as outscale
net01 = outscale.Net("net01", ip_range="10.0.0.0/16")
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.NewNet(ctx, "net01", &outscale.NetArgs{
IpRange: pulumi.String("10.0.0.0/16"),
})
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",
});
});
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 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());
}
}
resources:
net01:
type: outscale:Net
properties:
ipRange: 10.0.0.0/16
Associate a DHCP option set to a Net
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const netAttributes01 = new outscale.NetAttributes("netAttributes01", {
netId: outscale_net.net01.net_id,
dhcpOptionsSetId: _var.dhcp_options_set_id,
});
import pulumi
import pulumi_outscale as outscale
net_attributes01 = outscale.NetAttributes("netAttributes01",
net_id=outscale_net["net01"]["net_id"],
dhcp_options_set_id=var["dhcp_options_set_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 {
_, err := outscale.NewNetAttributes(ctx, "netAttributes01", &outscale.NetAttributesArgs{
NetId: pulumi.Any(outscale_net.Net01.Net_id),
DhcpOptionsSetId: pulumi.Any(_var.Dhcp_options_set_id),
})
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 netAttributes01 = new Outscale.NetAttributes("netAttributes01", new()
{
NetId = outscale_net.Net01.Net_id,
DhcpOptionsSetId = @var.Dhcp_options_set_id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.NetAttributes;
import com.pulumi.outscale.NetAttributesArgs;
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 netAttributes01 = new NetAttributes("netAttributes01", NetAttributesArgs.builder()
.netId(outscale_net.net01().net_id())
.dhcpOptionsSetId(var_.dhcp_options_set_id())
.build());
}
}
resources:
netAttributes01:
type: outscale:NetAttributes
properties:
netId: ${outscale_net.net01.net_id}
dhcpOptionsSetId: ${var.dhcp_options_set_id}
Create NetAttributes Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetAttributes(name: string, args: NetAttributesArgs, opts?: CustomResourceOptions);
@overload
def NetAttributes(resource_name: str,
args: NetAttributesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetAttributes(resource_name: str,
opts: Optional[ResourceOptions] = None,
net_id: Optional[str] = None,
dhcp_options_set_id: Optional[str] = None,
net_attributes_id: Optional[str] = None)
func NewNetAttributes(ctx *Context, name string, args NetAttributesArgs, opts ...ResourceOption) (*NetAttributes, error)
public NetAttributes(string name, NetAttributesArgs args, CustomResourceOptions? opts = null)
public NetAttributes(String name, NetAttributesArgs args)
public NetAttributes(String name, NetAttributesArgs args, CustomResourceOptions options)
type: outscale:NetAttributes
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 NetAttributesArgs
- 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 NetAttributesArgs
- 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 NetAttributesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetAttributesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetAttributesArgs
- 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 netAttributesResource = new Outscale.NetAttributes("netAttributesResource", new()
{
NetId = "string",
DhcpOptionsSetId = "string",
NetAttributesId = "string",
});
example, err := outscale.NewNetAttributes(ctx, "netAttributesResource", &outscale.NetAttributesArgs{
NetId: pulumi.String("string"),
DhcpOptionsSetId: pulumi.String("string"),
NetAttributesId: pulumi.String("string"),
})
var netAttributesResource = new NetAttributes("netAttributesResource", NetAttributesArgs.builder()
.netId("string")
.dhcpOptionsSetId("string")
.netAttributesId("string")
.build());
net_attributes_resource = outscale.NetAttributes("netAttributesResource",
net_id="string",
dhcp_options_set_id="string",
net_attributes_id="string")
const netAttributesResource = new outscale.NetAttributes("netAttributesResource", {
netId: "string",
dhcpOptionsSetId: "string",
netAttributesId: "string",
});
type: outscale:NetAttributes
properties:
dhcpOptionsSetId: string
netAttributesId: string
netId: string
NetAttributes 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 NetAttributes resource accepts the following input properties:
- Net
Id string - The ID of the Net.
- Dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - Net
Attributes stringId
- Net
Id string - The ID of the Net.
- Dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - Net
Attributes stringId
- net
Id String - The ID of the Net.
- dhcp
Options StringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - net
Attributes StringId
- net
Id string - The ID of the Net.
- dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - net
Attributes stringId
- net_
id str - The ID of the Net.
- dhcp_
options_ strset_ id - The ID of the DHCP options set (or
default
if you want to associate the default one). - net_
attributes_ strid
- net
Id String - The ID of the Net.
- dhcp
Options StringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - net
Attributes StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the NetAttributes resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - Request
Id string - State string
- The state of the Net (
pending
|available
|deleting
). - List<Net
Attributes Tag> - One or more tags associated with the Net.
- Tenancy string
- The VM tenancy in a Net.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - Request
Id string - State string
- The state of the Net (
pending
|available
|deleting
). - []Net
Attributes Tag - One or more tags associated with the Net.
- Tenancy string
- The VM tenancy in a Net.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Range String - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - request
Id String - state String
- The state of the Net (
pending
|available
|deleting
). - List<Net
Attributes Tag> - One or more tags associated with the Net.
- tenancy String
- The VM tenancy in a Net.
- id string
- The provider-assigned unique ID for this managed resource.
- ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - request
Id string - state string
- The state of the Net (
pending
|available
|deleting
). - Net
Attributes Tag[] - One or more tags associated with the Net.
- tenancy string
- The VM tenancy in a Net.
- id str
- The provider-assigned unique ID for this managed resource.
- ip_
range str - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - request_
id str - state str
- The state of the Net (
pending
|available
|deleting
). - Sequence[Net
Attributes Tag] - One or more tags associated with the Net.
- tenancy str
- The VM tenancy in a Net.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Range String - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - request
Id String - state String
- The state of the Net (
pending
|available
|deleting
). - List<Property Map>
- One or more tags associated with the Net.
- tenancy String
- The VM tenancy in a Net.
Look up Existing NetAttributes Resource
Get an existing NetAttributes 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?: NetAttributesState, opts?: CustomResourceOptions): NetAttributes
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dhcp_options_set_id: Optional[str] = None,
ip_range: Optional[str] = None,
net_attributes_id: Optional[str] = None,
net_id: Optional[str] = None,
request_id: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Sequence[NetAttributesTagArgs]] = None,
tenancy: Optional[str] = None) -> NetAttributes
func GetNetAttributes(ctx *Context, name string, id IDInput, state *NetAttributesState, opts ...ResourceOption) (*NetAttributes, error)
public static NetAttributes Get(string name, Input<string> id, NetAttributesState? state, CustomResourceOptions? opts = null)
public static NetAttributes get(String name, Output<String> id, NetAttributesState state, CustomResourceOptions options)
resources: _: type: outscale:NetAttributes 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.
- Dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - Ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - Net
Attributes stringId - Net
Id string - The ID of the Net.
- Request
Id string - State string
- The state of the Net (
pending
|available
|deleting
). - List<Net
Attributes Tag> - One or more tags associated with the Net.
- Tenancy string
- The VM tenancy in a Net.
- Dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - Ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - Net
Attributes stringId - Net
Id string - The ID of the Net.
- Request
Id string - State string
- The state of the Net (
pending
|available
|deleting
). - []Net
Attributes Tag Args - One or more tags associated with the Net.
- Tenancy string
- The VM tenancy in a Net.
- dhcp
Options StringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip
Range String - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net
Attributes StringId - net
Id String - The ID of the Net.
- request
Id String - state String
- The state of the Net (
pending
|available
|deleting
). - List<Net
Attributes Tag> - One or more tags associated with the Net.
- tenancy String
- The VM tenancy in a Net.
- dhcp
Options stringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip
Range string - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net
Attributes stringId - net
Id string - The ID of the Net.
- request
Id string - state string
- The state of the Net (
pending
|available
|deleting
). - Net
Attributes Tag[] - One or more tags associated with the Net.
- tenancy string
- The VM tenancy in a Net.
- dhcp_
options_ strset_ id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip_
range str - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net_
attributes_ strid - net_
id str - The ID of the Net.
- request_
id str - state str
- The state of the Net (
pending
|available
|deleting
). - Sequence[Net
Attributes Tag Args] - One or more tags associated with the Net.
- tenancy str
- The VM tenancy in a Net.
- dhcp
Options StringSet Id - The ID of the DHCP options set (or
default
if you want to associate the default one). - ip
Range String - The IP range for the Net, in CIDR notation (for example,
10.0.0.0/16
). - net
Attributes StringId - net
Id String - The ID of the Net.
- request
Id String - state String
- The state of the Net (
pending
|available
|deleting
). - List<Property Map>
- One or more tags associated with the Net.
- tenancy String
- The VM tenancy in a Net.
Supporting Types
NetAttributesTag, NetAttributesTagArgs
Import
A Net attribute can be imported using the Net ID. For example:
console
$ pulumi import outscale:index/netAttributes:NetAttributes ImportedNet vpc-12345678
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.