vcd.NetworkIsolated
Explore with Pulumi AI
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
- Dhcp
Pools List<NetworkIsolated Dhcp Pool> - 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.
- Dns
Suffix 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. - Metadata
Entries List<NetworkIsolated Metadata Entry> 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
- Network
Isolated stringId - Org string
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- bool
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - Static
Ip List<NetworkPools Isolated Static Ip Pool> - 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
- Dhcp
Pools []NetworkIsolated Dhcp Pool Args - 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.
- Dns
Suffix 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. - Metadata
Entries []NetworkIsolated Metadata Entry Args 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
- Network
Isolated stringId - Org string
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- bool
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - Static
Ip []NetworkPools Isolated Static Ip Pool Args - 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
- dhcp
Pools List<NetworkIsolated Dhcp Pool> - 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.
- dns
Suffix 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. - metadata
Entries List<NetworkIsolated Metadata Entry> 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
- network
Isolated StringId - org String
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- Boolean
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static
Ip List<NetworkPools Isolated Static Ip Pool> - 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
- dhcp
Pools NetworkIsolated Dhcp Pool[] - 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.
- dns
Suffix 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. - metadata
Entries NetworkIsolated Metadata Entry[] 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
- network
Isolated stringId - org string
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- boolean
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static
Ip NetworkPools Isolated Static Ip Pool[] - 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[NetworkIsolated Dhcp Pool Args] - 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. - metadata_
entries Sequence[NetworkIsolated Metadata Entry Args] 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_ strid - org str
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- bool
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static_
ip_ Sequence[Networkpools Isolated Static Ip Pool Args] - 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
- dhcp
Pools 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.
- dns
Suffix 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. - metadata
Entries 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
- network
Isolated StringId - org String
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- Boolean
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static
Ip List<Property Map>Pools - 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:
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.
- Description string
- An optional description of the network
- Dhcp
Pools List<NetworkIsolated Dhcp Pool> - 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.
- Dns
Suffix 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. - Metadata
Entries List<NetworkIsolated Metadata Entry> 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
- Network
Isolated stringId - Org string
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- bool
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - Static
Ip List<NetworkPools Isolated Static Ip Pool> - 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
- Dhcp
Pools []NetworkIsolated Dhcp Pool Args - 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.
- Dns
Suffix 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. - Metadata
Entries []NetworkIsolated Metadata Entry Args 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
- Network
Isolated stringId - Org string
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- bool
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - Static
Ip []NetworkPools Isolated Static Ip Pool Args - 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
- dhcp
Pools List<NetworkIsolated Dhcp Pool> - 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.
- dns
Suffix 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. - metadata
Entries List<NetworkIsolated Metadata Entry> 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
- network
Isolated StringId - org String
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- Boolean
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static
Ip List<NetworkPools Isolated Static Ip Pool> - 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
- dhcp
Pools NetworkIsolated Dhcp Pool[] - 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.
- dns
Suffix 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. - metadata
Entries NetworkIsolated Metadata Entry[] 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
- network
Isolated stringId - org string
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- boolean
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static
Ip NetworkPools Isolated Static Ip Pool[] - 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[NetworkIsolated Dhcp Pool Args] - 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. - metadata_
entries Sequence[NetworkIsolated Metadata Entry Args] 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_ strid - org str
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- bool
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static_
ip_ Sequence[Networkpools Isolated Static Ip Pool Args] - 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
- dhcp
Pools 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.
- dns
Suffix 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. - metadata
Entries 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
- network
Isolated StringId - org String
- The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
- Boolean
- Defines if this network is shared between multiple VDCs
in the Org. Defaults to
false
. - static
Ip List<Property Map>Pools - 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
- End
Address string - The final address in the IP Range
- Start
Address string - The first address in the IP Range
- Default
Lease doubleTime - The default DHCP lease time to use
- Max
Lease doubleTime - The maximum DHCP lease time to use
- End
Address string - The final address in the IP Range
- Start
Address string - The first address in the IP Range
- Default
Lease float64Time - The default DHCP lease time to use
- Max
Lease float64Time - The maximum DHCP lease time to use
- end
Address String - The final address in the IP Range
- start
Address String - The first address in the IP Range
- default
Lease DoubleTime - The default DHCP lease time to use
- max
Lease DoubleTime - The maximum DHCP lease time to use
- end
Address string - The final address in the IP Range
- start
Address string - The first address in the IP Range
- default
Lease numberTime - The default DHCP lease time to use
- max
Lease numberTime - 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_ floattime - The default DHCP lease time to use
- max_
lease_ floattime - The maximum DHCP lease time to use
- end
Address String - The final address in the IP Range
- start
Address String - The first address in the IP Range
- default
Lease NumberTime - The default DHCP lease time to use
- max
Lease NumberTime - The maximum DHCP lease time to use
NetworkIsolatedMetadataEntry, NetworkIsolatedMetadataEntryArgs
- Is
System 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'
- User
Access 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 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'
- User
Access 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 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'
- user
Access 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 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'
- user
Access 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
- is
System 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'
- user
Access 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
- End
Address string - The final address in the IP Range
- Start
Address string - The first address in the IP Range
- End
Address string - The final address in the IP Range
- Start
Address string - The first address in the IP Range
- end
Address String - The final address in the IP Range
- start
Address String - The first address in the IP Range
- end
Address string - The final address in the IP Range
- start
Address 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
- end
Address String - The final address in the IP Range
- start
Address 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.