1. Packages
  2. Vcd Provider
  3. API Docs
  4. NetworkIsolated
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.NetworkIsolated

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create NetworkIsolated Resource

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

    Constructor syntax

    new NetworkIsolated(name: string, args?: NetworkIsolatedArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkIsolated(resource_name: str,
                        args: Optional[NetworkIsolatedArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkIsolated(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        description: Optional[str] = None,
                        dhcp_pools: Optional[Sequence[NetworkIsolatedDhcpPoolArgs]] = None,
                        dns1: Optional[str] = None,
                        dns2: Optional[str] = None,
                        dns_suffix: Optional[str] = None,
                        gateway: Optional[str] = None,
                        metadata: Optional[Mapping[str, str]] = None,
                        metadata_entries: Optional[Sequence[NetworkIsolatedMetadataEntryArgs]] = None,
                        name: Optional[str] = None,
                        netmask: Optional[str] = None,
                        network_isolated_id: Optional[str] = None,
                        org: Optional[str] = None,
                        shared: Optional[bool] = None,
                        static_ip_pools: Optional[Sequence[NetworkIsolatedStaticIpPoolArgs]] = None,
                        vdc: Optional[str] = None)
    func NewNetworkIsolated(ctx *Context, name string, args *NetworkIsolatedArgs, opts ...ResourceOption) (*NetworkIsolated, error)
    public NetworkIsolated(string name, NetworkIsolatedArgs? args = null, CustomResourceOptions? opts = null)
    public NetworkIsolated(String name, NetworkIsolatedArgs args)
    public NetworkIsolated(String name, NetworkIsolatedArgs args, CustomResourceOptions options)
    
    type: vcd:NetworkIsolated
    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 NetworkIsolatedArgs
    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 NetworkIsolatedArgs
    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 NetworkIsolatedArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkIsolatedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkIsolatedArgs
    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 networkIsolatedResource = new Vcd.NetworkIsolated("networkIsolatedResource", new()
    {
        Description = "string",
        DhcpPools = new[]
        {
            new Vcd.Inputs.NetworkIsolatedDhcpPoolArgs
            {
                EndAddress = "string",
                StartAddress = "string",
                DefaultLeaseTime = 0,
                MaxLeaseTime = 0,
            },
        },
        Dns1 = "string",
        Dns2 = "string",
        DnsSuffix = "string",
        Gateway = "string",
        MetadataEntries = new[]
        {
            new Vcd.Inputs.NetworkIsolatedMetadataEntryArgs
            {
                IsSystem = false,
                Key = "string",
                Type = "string",
                UserAccess = "string",
                Value = "string",
            },
        },
        Name = "string",
        Netmask = "string",
        NetworkIsolatedId = "string",
        Org = "string",
        Shared = false,
        StaticIpPools = new[]
        {
            new Vcd.Inputs.NetworkIsolatedStaticIpPoolArgs
            {
                EndAddress = "string",
                StartAddress = "string",
            },
        },
        Vdc = "string",
    });
    
    example, err := vcd.NewNetworkIsolated(ctx, "networkIsolatedResource", &vcd.NetworkIsolatedArgs{
    	Description: pulumi.String("string"),
    	DhcpPools: vcd.NetworkIsolatedDhcpPoolArray{
    		&vcd.NetworkIsolatedDhcpPoolArgs{
    			EndAddress:       pulumi.String("string"),
    			StartAddress:     pulumi.String("string"),
    			DefaultLeaseTime: pulumi.Float64(0),
    			MaxLeaseTime:     pulumi.Float64(0),
    		},
    	},
    	Dns1:      pulumi.String("string"),
    	Dns2:      pulumi.String("string"),
    	DnsSuffix: pulumi.String("string"),
    	Gateway:   pulumi.String("string"),
    	MetadataEntries: vcd.NetworkIsolatedMetadataEntryArray{
    		&vcd.NetworkIsolatedMetadataEntryArgs{
    			IsSystem:   pulumi.Bool(false),
    			Key:        pulumi.String("string"),
    			Type:       pulumi.String("string"),
    			UserAccess: pulumi.String("string"),
    			Value:      pulumi.String("string"),
    		},
    	},
    	Name:              pulumi.String("string"),
    	Netmask:           pulumi.String("string"),
    	NetworkIsolatedId: pulumi.String("string"),
    	Org:               pulumi.String("string"),
    	Shared:            pulumi.Bool(false),
    	StaticIpPools: vcd.NetworkIsolatedStaticIpPoolArray{
    		&vcd.NetworkIsolatedStaticIpPoolArgs{
    			EndAddress:   pulumi.String("string"),
    			StartAddress: pulumi.String("string"),
    		},
    	},
    	Vdc: pulumi.String("string"),
    })
    
    var networkIsolatedResource = new NetworkIsolated("networkIsolatedResource", NetworkIsolatedArgs.builder()
        .description("string")
        .dhcpPools(NetworkIsolatedDhcpPoolArgs.builder()
            .endAddress("string")
            .startAddress("string")
            .defaultLeaseTime(0)
            .maxLeaseTime(0)
            .build())
        .dns1("string")
        .dns2("string")
        .dnsSuffix("string")
        .gateway("string")
        .metadataEntries(NetworkIsolatedMetadataEntryArgs.builder()
            .isSystem(false)
            .key("string")
            .type("string")
            .userAccess("string")
            .value("string")
            .build())
        .name("string")
        .netmask("string")
        .networkIsolatedId("string")
        .org("string")
        .shared(false)
        .staticIpPools(NetworkIsolatedStaticIpPoolArgs.builder()
            .endAddress("string")
            .startAddress("string")
            .build())
        .vdc("string")
        .build());
    
    network_isolated_resource = vcd.NetworkIsolated("networkIsolatedResource",
        description="string",
        dhcp_pools=[{
            "end_address": "string",
            "start_address": "string",
            "default_lease_time": 0,
            "max_lease_time": 0,
        }],
        dns1="string",
        dns2="string",
        dns_suffix="string",
        gateway="string",
        metadata_entries=[{
            "is_system": False,
            "key": "string",
            "type": "string",
            "user_access": "string",
            "value": "string",
        }],
        name="string",
        netmask="string",
        network_isolated_id="string",
        org="string",
        shared=False,
        static_ip_pools=[{
            "end_address": "string",
            "start_address": "string",
        }],
        vdc="string")
    
    const networkIsolatedResource = new vcd.NetworkIsolated("networkIsolatedResource", {
        description: "string",
        dhcpPools: [{
            endAddress: "string",
            startAddress: "string",
            defaultLeaseTime: 0,
            maxLeaseTime: 0,
        }],
        dns1: "string",
        dns2: "string",
        dnsSuffix: "string",
        gateway: "string",
        metadataEntries: [{
            isSystem: false,
            key: "string",
            type: "string",
            userAccess: "string",
            value: "string",
        }],
        name: "string",
        netmask: "string",
        networkIsolatedId: "string",
        org: "string",
        shared: false,
        staticIpPools: [{
            endAddress: "string",
            startAddress: "string",
        }],
        vdc: "string",
    });
    
    type: vcd:NetworkIsolated
    properties:
        description: string
        dhcpPools:
            - defaultLeaseTime: 0
              endAddress: string
              maxLeaseTime: 0
              startAddress: string
        dns1: string
        dns2: string
        dnsSuffix: string
        gateway: string
        metadataEntries:
            - isSystem: false
              key: string
              type: string
              userAccess: string
              value: string
        name: string
        netmask: string
        networkIsolatedId: string
        org: string
        shared: false
        staticIpPools:
            - endAddress: string
              startAddress: string
        vdc: string
    

    NetworkIsolated 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 NetworkIsolated resource accepts the following input properties:

    Description string
    An optional description of the network
    DhcpPools List<NetworkIsolatedDhcpPool>
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    Dns1 string
    First DNS server to use.
    Dns2 string
    Second DNS server to use.
    DnsSuffix string
    A FQDN for the virtual machines on this network
    Gateway string
    The gateway for this network
    Metadata Dictionary<string, string>
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    MetadataEntries List<NetworkIsolatedMetadataEntry>

    A set of metadata entries to assign. See Metadata section for details.

    Name string
    A unique name for the network
    Netmask string
    The netmask for the new network. Defaults to 255.255.255.0
    NetworkIsolatedId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    Shared bool
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    StaticIpPools List<NetworkIsolatedStaticIpPool>
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    Vdc string
    The name of VDC to use, optional if defined at provider level
    Description string
    An optional description of the network
    DhcpPools []NetworkIsolatedDhcpPoolArgs
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    Dns1 string
    First DNS server to use.
    Dns2 string
    Second DNS server to use.
    DnsSuffix string
    A FQDN for the virtual machines on this network
    Gateway string
    The gateway for this network
    Metadata map[string]string
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    MetadataEntries []NetworkIsolatedMetadataEntryArgs

    A set of metadata entries to assign. See Metadata section for details.

    Name string
    A unique name for the network
    Netmask string
    The netmask for the new network. Defaults to 255.255.255.0
    NetworkIsolatedId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    Shared bool
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    StaticIpPools []NetworkIsolatedStaticIpPoolArgs
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    Vdc string
    The name of VDC to use, optional if defined at provider level
    description String
    An optional description of the network
    dhcpPools List<NetworkIsolatedDhcpPool>
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 String
    First DNS server to use.
    dns2 String
    Second DNS server to use.
    dnsSuffix String
    A FQDN for the virtual machines on this network
    gateway String
    The gateway for this network
    metadata Map<String,String>
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadataEntries List<NetworkIsolatedMetadataEntry>

    A set of metadata entries to assign. See Metadata section for details.

    name String
    A unique name for the network
    netmask String
    The netmask for the new network. Defaults to 255.255.255.0
    networkIsolatedId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared Boolean
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    staticIpPools List<NetworkIsolatedStaticIpPool>
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc String
    The name of VDC to use, optional if defined at provider level
    description string
    An optional description of the network
    dhcpPools NetworkIsolatedDhcpPool[]
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 string
    First DNS server to use.
    dns2 string
    Second DNS server to use.
    dnsSuffix string
    A FQDN for the virtual machines on this network
    gateway string
    The gateway for this network
    metadata {[key: string]: string}
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadataEntries NetworkIsolatedMetadataEntry[]

    A set of metadata entries to assign. See Metadata section for details.

    name string
    A unique name for the network
    netmask string
    The netmask for the new network. Defaults to 255.255.255.0
    networkIsolatedId string
    org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared boolean
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    staticIpPools NetworkIsolatedStaticIpPool[]
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc string
    The name of VDC to use, optional if defined at provider level
    description str
    An optional description of the network
    dhcp_pools Sequence[NetworkIsolatedDhcpPoolArgs]
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 str
    First DNS server to use.
    dns2 str
    Second DNS server to use.
    dns_suffix str
    A FQDN for the virtual machines on this network
    gateway str
    The gateway for this network
    metadata Mapping[str, str]
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadata_entries Sequence[NetworkIsolatedMetadataEntryArgs]

    A set of metadata entries to assign. See Metadata section for details.

    name str
    A unique name for the network
    netmask str
    The netmask for the new network. Defaults to 255.255.255.0
    network_isolated_id str
    org str
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared bool
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    static_ip_pools Sequence[NetworkIsolatedStaticIpPoolArgs]
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc str
    The name of VDC to use, optional if defined at provider level
    description String
    An optional description of the network
    dhcpPools List<Property Map>
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 String
    First DNS server to use.
    dns2 String
    Second DNS server to use.
    dnsSuffix String
    A FQDN for the virtual machines on this network
    gateway String
    The gateway for this network
    metadata Map<String>
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadataEntries List<Property Map>

    A set of metadata entries to assign. See Metadata section for details.

    name String
    A unique name for the network
    netmask String
    The netmask for the new network. Defaults to 255.255.255.0
    networkIsolatedId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared Boolean
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    staticIpPools List<Property Map>
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc String
    The name of VDC to use, optional if defined at provider level

    Outputs

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

    Href string
    Network Hyper Reference
    Id string
    The provider-assigned unique ID for this managed resource.
    Href string
    Network Hyper Reference
    Id string
    The provider-assigned unique ID for this managed resource.
    href String
    Network Hyper Reference
    id String
    The provider-assigned unique ID for this managed resource.
    href string
    Network Hyper Reference
    id string
    The provider-assigned unique ID for this managed resource.
    href str
    Network Hyper Reference
    id str
    The provider-assigned unique ID for this managed resource.
    href String
    Network Hyper Reference
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NetworkIsolated Resource

    Get an existing NetworkIsolated 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?: NetworkIsolatedState, opts?: CustomResourceOptions): NetworkIsolated
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            dhcp_pools: Optional[Sequence[NetworkIsolatedDhcpPoolArgs]] = None,
            dns1: Optional[str] = None,
            dns2: Optional[str] = None,
            dns_suffix: Optional[str] = None,
            gateway: Optional[str] = None,
            href: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            metadata_entries: Optional[Sequence[NetworkIsolatedMetadataEntryArgs]] = None,
            name: Optional[str] = None,
            netmask: Optional[str] = None,
            network_isolated_id: Optional[str] = None,
            org: Optional[str] = None,
            shared: Optional[bool] = None,
            static_ip_pools: Optional[Sequence[NetworkIsolatedStaticIpPoolArgs]] = None,
            vdc: Optional[str] = None) -> NetworkIsolated
    func GetNetworkIsolated(ctx *Context, name string, id IDInput, state *NetworkIsolatedState, opts ...ResourceOption) (*NetworkIsolated, error)
    public static NetworkIsolated Get(string name, Input<string> id, NetworkIsolatedState? state, CustomResourceOptions? opts = null)
    public static NetworkIsolated get(String name, Output<String> id, NetworkIsolatedState state, CustomResourceOptions options)
    resources:  _:    type: vcd:NetworkIsolated    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:
    Description string
    An optional description of the network
    DhcpPools List<NetworkIsolatedDhcpPool>
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    Dns1 string
    First DNS server to use.
    Dns2 string
    Second DNS server to use.
    DnsSuffix string
    A FQDN for the virtual machines on this network
    Gateway string
    The gateway for this network
    Href string
    Network Hyper Reference
    Metadata Dictionary<string, string>
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    MetadataEntries List<NetworkIsolatedMetadataEntry>

    A set of metadata entries to assign. See Metadata section for details.

    Name string
    A unique name for the network
    Netmask string
    The netmask for the new network. Defaults to 255.255.255.0
    NetworkIsolatedId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    Shared bool
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    StaticIpPools List<NetworkIsolatedStaticIpPool>
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    Vdc string
    The name of VDC to use, optional if defined at provider level
    Description string
    An optional description of the network
    DhcpPools []NetworkIsolatedDhcpPoolArgs
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    Dns1 string
    First DNS server to use.
    Dns2 string
    Second DNS server to use.
    DnsSuffix string
    A FQDN for the virtual machines on this network
    Gateway string
    The gateway for this network
    Href string
    Network Hyper Reference
    Metadata map[string]string
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    MetadataEntries []NetworkIsolatedMetadataEntryArgs

    A set of metadata entries to assign. See Metadata section for details.

    Name string
    A unique name for the network
    Netmask string
    The netmask for the new network. Defaults to 255.255.255.0
    NetworkIsolatedId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    Shared bool
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    StaticIpPools []NetworkIsolatedStaticIpPoolArgs
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    Vdc string
    The name of VDC to use, optional if defined at provider level
    description String
    An optional description of the network
    dhcpPools List<NetworkIsolatedDhcpPool>
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 String
    First DNS server to use.
    dns2 String
    Second DNS server to use.
    dnsSuffix String
    A FQDN for the virtual machines on this network
    gateway String
    The gateway for this network
    href String
    Network Hyper Reference
    metadata Map<String,String>
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadataEntries List<NetworkIsolatedMetadataEntry>

    A set of metadata entries to assign. See Metadata section for details.

    name String
    A unique name for the network
    netmask String
    The netmask for the new network. Defaults to 255.255.255.0
    networkIsolatedId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared Boolean
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    staticIpPools List<NetworkIsolatedStaticIpPool>
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc String
    The name of VDC to use, optional if defined at provider level
    description string
    An optional description of the network
    dhcpPools NetworkIsolatedDhcpPool[]
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 string
    First DNS server to use.
    dns2 string
    Second DNS server to use.
    dnsSuffix string
    A FQDN for the virtual machines on this network
    gateway string
    The gateway for this network
    href string
    Network Hyper Reference
    metadata {[key: string]: string}
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadataEntries NetworkIsolatedMetadataEntry[]

    A set of metadata entries to assign. See Metadata section for details.

    name string
    A unique name for the network
    netmask string
    The netmask for the new network. Defaults to 255.255.255.0
    networkIsolatedId string
    org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared boolean
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    staticIpPools NetworkIsolatedStaticIpPool[]
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc string
    The name of VDC to use, optional if defined at provider level
    description str
    An optional description of the network
    dhcp_pools Sequence[NetworkIsolatedDhcpPoolArgs]
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 str
    First DNS server to use.
    dns2 str
    Second DNS server to use.
    dns_suffix str
    A FQDN for the virtual machines on this network
    gateway str
    The gateway for this network
    href str
    Network Hyper Reference
    metadata Mapping[str, str]
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadata_entries Sequence[NetworkIsolatedMetadataEntryArgs]

    A set of metadata entries to assign. See Metadata section for details.

    name str
    A unique name for the network
    netmask str
    The netmask for the new network. Defaults to 255.255.255.0
    network_isolated_id str
    org str
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared bool
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    static_ip_pools Sequence[NetworkIsolatedStaticIpPoolArgs]
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc str
    The name of VDC to use, optional if defined at provider level
    description String
    An optional description of the network
    dhcpPools List<Property Map>
    A range of IPs to issue to virtual machines that don't have a static IP; see IP Pools below for details.
    dns1 String
    First DNS server to use.
    dns2 String
    Second DNS server to use.
    dnsSuffix String
    A FQDN for the virtual machines on this network
    gateway String
    The gateway for this network
    href String
    Network Hyper Reference
    metadata Map<String>
    Use metadata_entry instead. Key value map of metadata to assign to this network.

    Deprecated: Deprecated

    metadataEntries List<Property Map>

    A set of metadata entries to assign. See Metadata section for details.

    name String
    A unique name for the network
    netmask String
    The netmask for the new network. Defaults to 255.255.255.0
    networkIsolatedId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    shared Boolean
    Defines if this network is shared between multiple VDCs in the Org. Defaults to false.
    staticIpPools List<Property Map>
    A range of IPs permitted to be used as static IPs for virtual machines; see IP Pools below for details.
    vdc String
    The name of VDC to use, optional if defined at provider level

    Supporting Types

    NetworkIsolatedDhcpPool, NetworkIsolatedDhcpPoolArgs

    EndAddress string
    The final address in the IP Range
    StartAddress string
    The first address in the IP Range
    DefaultLeaseTime double
    The default DHCP lease time to use
    MaxLeaseTime double
    The maximum DHCP lease time to use
    EndAddress string
    The final address in the IP Range
    StartAddress string
    The first address in the IP Range
    DefaultLeaseTime float64
    The default DHCP lease time to use
    MaxLeaseTime float64
    The maximum DHCP lease time to use
    endAddress String
    The final address in the IP Range
    startAddress String
    The first address in the IP Range
    defaultLeaseTime Double
    The default DHCP lease time to use
    maxLeaseTime Double
    The maximum DHCP lease time to use
    endAddress string
    The final address in the IP Range
    startAddress string
    The first address in the IP Range
    defaultLeaseTime number
    The default DHCP lease time to use
    maxLeaseTime number
    The maximum DHCP lease time to use
    end_address str
    The final address in the IP Range
    start_address str
    The first address in the IP Range
    default_lease_time float
    The default DHCP lease time to use
    max_lease_time float
    The maximum DHCP lease time to use
    endAddress String
    The final address in the IP Range
    startAddress String
    The first address in the IP Range
    defaultLeaseTime Number
    The default DHCP lease time to use
    maxLeaseTime Number
    The maximum DHCP lease time to use

    NetworkIsolatedMetadataEntry, NetworkIsolatedMetadataEntryArgs

    IsSystem bool
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    Key string
    Key of this metadata entry. Required if the metadata entry is not empty
    Type string
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    UserAccess string
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    Value string
    Value of this metadata entry. Required if the metadata entry is not empty
    IsSystem bool
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    Key string
    Key of this metadata entry. Required if the metadata entry is not empty
    Type string
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    UserAccess string
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    Value string
    Value of this metadata entry. Required if the metadata entry is not empty
    isSystem Boolean
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key String
    Key of this metadata entry. Required if the metadata entry is not empty
    type String
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    userAccess String
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value String
    Value of this metadata entry. Required if the metadata entry is not empty
    isSystem boolean
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key string
    Key of this metadata entry. Required if the metadata entry is not empty
    type string
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    userAccess string
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value string
    Value of this metadata entry. Required if the metadata entry is not empty
    is_system bool
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key str
    Key of this metadata entry. Required if the metadata entry is not empty
    type str
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    user_access str
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value str
    Value of this metadata entry. Required if the metadata entry is not empty
    isSystem Boolean
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key String
    Key of this metadata entry. Required if the metadata entry is not empty
    type String
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    userAccess String
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value String
    Value of this metadata entry. Required if the metadata entry is not empty

    NetworkIsolatedStaticIpPool, NetworkIsolatedStaticIpPoolArgs

    EndAddress string
    The final address in the IP Range
    StartAddress string
    The first address in the IP Range
    EndAddress string
    The final address in the IP Range
    StartAddress string
    The first address in the IP Range
    endAddress String
    The final address in the IP Range
    startAddress String
    The first address in the IP Range
    endAddress string
    The final address in the IP Range
    startAddress string
    The first address in the IP Range
    end_address str
    The final address in the IP Range
    start_address str
    The first address in the IP Range
    endAddress String
    The final address in the IP Range
    startAddress String
    The first address in the IP Range

    Package Details

    Repository
    vcd vmware/terraform-provider-vcd
    License
    Notes
    This Pulumi package is based on the vcd Terraform Provider.
    vcd logo
    vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware