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

outscale.NetAttributes

Explore with Pulumi AI

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

    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:

    NetId string
    The ID of the Net.
    DhcpOptionsSetId string
    The ID of the DHCP options set (or default if you want to associate the default one).
    NetAttributesId string
    NetId string
    The ID of the Net.
    DhcpOptionsSetId string
    The ID of the DHCP options set (or default if you want to associate the default one).
    NetAttributesId string
    netId String
    The ID of the Net.
    dhcpOptionsSetId String
    The ID of the DHCP options set (or default if you want to associate the default one).
    netAttributesId String
    netId string
    The ID of the Net.
    dhcpOptionsSetId string
    The ID of the DHCP options set (or default if you want to associate the default one).
    netAttributesId string
    net_id str
    The ID of the Net.
    dhcp_options_set_id str
    The ID of the DHCP options set (or default if you want to associate the default one).
    net_attributes_id str
    netId String
    The ID of the Net.
    dhcpOptionsSetId String
    The ID of the DHCP options set (or default if you want to associate the default one).
    netAttributesId String

    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.
    IpRange string
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    RequestId string
    State string
    The state of the Net (pending | available | deleting).
    Tags List<NetAttributesTag>
    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.
    IpRange string
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    RequestId string
    State string
    The state of the Net (pending | available | deleting).
    Tags []NetAttributesTag
    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.
    ipRange String
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    requestId String
    state String
    The state of the Net (pending | available | deleting).
    tags List<NetAttributesTag>
    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.
    ipRange string
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    requestId string
    state string
    The state of the Net (pending | available | deleting).
    tags NetAttributesTag[]
    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).
    tags Sequence[NetAttributesTag]
    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.
    ipRange String
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    requestId String
    state String
    The state of the Net (pending | available | deleting).
    tags 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.
    The following state arguments are supported:
    DhcpOptionsSetId string
    The ID of the DHCP options set (or default if you want to associate the default one).
    IpRange string
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    NetAttributesId string
    NetId string
    The ID of the Net.
    RequestId string
    State string
    The state of the Net (pending | available | deleting).
    Tags List<NetAttributesTag>
    One or more tags associated with the Net.
    Tenancy string
    The VM tenancy in a Net.
    DhcpOptionsSetId string
    The ID of the DHCP options set (or default if you want to associate the default one).
    IpRange string
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    NetAttributesId string
    NetId string
    The ID of the Net.
    RequestId string
    State string
    The state of the Net (pending | available | deleting).
    Tags []NetAttributesTagArgs
    One or more tags associated with the Net.
    Tenancy string
    The VM tenancy in a Net.
    dhcpOptionsSetId String
    The ID of the DHCP options set (or default if you want to associate the default one).
    ipRange String
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    netAttributesId String
    netId String
    The ID of the Net.
    requestId String
    state String
    The state of the Net (pending | available | deleting).
    tags List<NetAttributesTag>
    One or more tags associated with the Net.
    tenancy String
    The VM tenancy in a Net.
    dhcpOptionsSetId string
    The ID of the DHCP options set (or default if you want to associate the default one).
    ipRange string
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    netAttributesId string
    netId string
    The ID of the Net.
    requestId string
    state string
    The state of the Net (pending | available | deleting).
    tags NetAttributesTag[]
    One or more tags associated with the Net.
    tenancy string
    The VM tenancy in a Net.
    dhcp_options_set_id str
    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_id str
    net_id str
    The ID of the Net.
    request_id str
    state str
    The state of the Net (pending | available | deleting).
    tags Sequence[NetAttributesTagArgs]
    One or more tags associated with the Net.
    tenancy str
    The VM tenancy in a Net.
    dhcpOptionsSetId String
    The ID of the DHCP options set (or default if you want to associate the default one).
    ipRange String
    The IP range for the Net, in CIDR notation (for example, 10.0.0.0/16).
    netAttributesId String
    netId String
    The ID of the Net.
    requestId String
    state String
    The state of the Net (pending | available | deleting).
    tags List<Property Map>
    One or more tags associated with the Net.
    tenancy String
    The VM tenancy in a Net.

    Supporting Types

    NetAttributesTag, NetAttributesTagArgs

    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 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.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale