vcd.NetworkRouted
Explore with Pulumi AI
Create NetworkRouted Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkRouted(name: string, args: NetworkRoutedArgs, opts?: CustomResourceOptions);
@overload
def NetworkRouted(resource_name: str,
args: NetworkRoutedArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkRouted(resource_name: str,
opts: Optional[ResourceOptions] = None,
edge_gateway: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
dns2: Optional[str] = None,
dns_suffix: Optional[str] = None,
dhcp_pools: Optional[Sequence[NetworkRoutedDhcpPoolArgs]] = None,
gateway: Optional[str] = None,
dns1: Optional[str] = None,
interface_type: Optional[str] = None,
metadata_entries: Optional[Sequence[NetworkRoutedMetadataEntryArgs]] = None,
description: Optional[str] = None,
netmask: Optional[str] = None,
network_routed_id: Optional[str] = None,
org: Optional[str] = None,
shared: Optional[bool] = None,
static_ip_pools: Optional[Sequence[NetworkRoutedStaticIpPoolArgs]] = None,
vdc: Optional[str] = None)
func NewNetworkRouted(ctx *Context, name string, args NetworkRoutedArgs, opts ...ResourceOption) (*NetworkRouted, error)
public NetworkRouted(string name, NetworkRoutedArgs args, CustomResourceOptions? opts = null)
public NetworkRouted(String name, NetworkRoutedArgs args)
public NetworkRouted(String name, NetworkRoutedArgs args, CustomResourceOptions options)
type: vcd:NetworkRouted
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 NetworkRoutedArgs
- 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 NetworkRoutedArgs
- 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 NetworkRoutedArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkRoutedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkRoutedArgs
- 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 networkRoutedResource = new Vcd.NetworkRouted("networkRoutedResource", new()
{
EdgeGateway = "string",
Name = "string",
Dns2 = "string",
DnsSuffix = "string",
DhcpPools = new[]
{
new Vcd.Inputs.NetworkRoutedDhcpPoolArgs
{
EndAddress = "string",
StartAddress = "string",
DefaultLeaseTime = 0,
MaxLeaseTime = 0,
},
},
Gateway = "string",
Dns1 = "string",
InterfaceType = "string",
MetadataEntries = new[]
{
new Vcd.Inputs.NetworkRoutedMetadataEntryArgs
{
IsSystem = false,
Key = "string",
Type = "string",
UserAccess = "string",
Value = "string",
},
},
Description = "string",
Netmask = "string",
NetworkRoutedId = "string",
Org = "string",
Shared = false,
StaticIpPools = new[]
{
new Vcd.Inputs.NetworkRoutedStaticIpPoolArgs
{
EndAddress = "string",
StartAddress = "string",
},
},
Vdc = "string",
});
example, err := vcd.NewNetworkRouted(ctx, "networkRoutedResource", &vcd.NetworkRoutedArgs{
EdgeGateway: pulumi.String("string"),
Name: pulumi.String("string"),
Dns2: pulumi.String("string"),
DnsSuffix: pulumi.String("string"),
DhcpPools: vcd.NetworkRoutedDhcpPoolArray{
&vcd.NetworkRoutedDhcpPoolArgs{
EndAddress: pulumi.String("string"),
StartAddress: pulumi.String("string"),
DefaultLeaseTime: pulumi.Float64(0),
MaxLeaseTime: pulumi.Float64(0),
},
},
Gateway: pulumi.String("string"),
Dns1: pulumi.String("string"),
InterfaceType: pulumi.String("string"),
MetadataEntries: vcd.NetworkRoutedMetadataEntryArray{
&vcd.NetworkRoutedMetadataEntryArgs{
IsSystem: pulumi.Bool(false),
Key: pulumi.String("string"),
Type: pulumi.String("string"),
UserAccess: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Netmask: pulumi.String("string"),
NetworkRoutedId: pulumi.String("string"),
Org: pulumi.String("string"),
Shared: pulumi.Bool(false),
StaticIpPools: vcd.NetworkRoutedStaticIpPoolArray{
&vcd.NetworkRoutedStaticIpPoolArgs{
EndAddress: pulumi.String("string"),
StartAddress: pulumi.String("string"),
},
},
Vdc: pulumi.String("string"),
})
var networkRoutedResource = new NetworkRouted("networkRoutedResource", NetworkRoutedArgs.builder()
.edgeGateway("string")
.name("string")
.dns2("string")
.dnsSuffix("string")
.dhcpPools(NetworkRoutedDhcpPoolArgs.builder()
.endAddress("string")
.startAddress("string")
.defaultLeaseTime(0)
.maxLeaseTime(0)
.build())
.gateway("string")
.dns1("string")
.interfaceType("string")
.metadataEntries(NetworkRoutedMetadataEntryArgs.builder()
.isSystem(false)
.key("string")
.type("string")
.userAccess("string")
.value("string")
.build())
.description("string")
.netmask("string")
.networkRoutedId("string")
.org("string")
.shared(false)
.staticIpPools(NetworkRoutedStaticIpPoolArgs.builder()
.endAddress("string")
.startAddress("string")
.build())
.vdc("string")
.build());
network_routed_resource = vcd.NetworkRouted("networkRoutedResource",
edge_gateway="string",
name="string",
dns2="string",
dns_suffix="string",
dhcp_pools=[{
"end_address": "string",
"start_address": "string",
"default_lease_time": 0,
"max_lease_time": 0,
}],
gateway="string",
dns1="string",
interface_type="string",
metadata_entries=[{
"is_system": False,
"key": "string",
"type": "string",
"user_access": "string",
"value": "string",
}],
description="string",
netmask="string",
network_routed_id="string",
org="string",
shared=False,
static_ip_pools=[{
"end_address": "string",
"start_address": "string",
}],
vdc="string")
const networkRoutedResource = new vcd.NetworkRouted("networkRoutedResource", {
edgeGateway: "string",
name: "string",
dns2: "string",
dnsSuffix: "string",
dhcpPools: [{
endAddress: "string",
startAddress: "string",
defaultLeaseTime: 0,
maxLeaseTime: 0,
}],
gateway: "string",
dns1: "string",
interfaceType: "string",
metadataEntries: [{
isSystem: false,
key: "string",
type: "string",
userAccess: "string",
value: "string",
}],
description: "string",
netmask: "string",
networkRoutedId: "string",
org: "string",
shared: false,
staticIpPools: [{
endAddress: "string",
startAddress: "string",
}],
vdc: "string",
});
type: vcd:NetworkRouted
properties:
description: string
dhcpPools:
- defaultLeaseTime: 0
endAddress: string
maxLeaseTime: 0
startAddress: string
dns1: string
dns2: string
dnsSuffix: string
edgeGateway: string
gateway: string
interfaceType: string
metadataEntries:
- isSystem: false
key: string
type: string
userAccess: string
value: string
name: string
netmask: string
networkRoutedId: string
org: string
shared: false
staticIpPools:
- endAddress: string
startAddress: string
vdc: string
NetworkRouted 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 NetworkRouted resource accepts the following input properties:
- Edge
Gateway string - The name of the edge gateway
- Description string
- An optional description of the network
- Dhcp
Pools List<NetworkRouted 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
- Interface
Type string - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - Metadata Dictionary<string, string>
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - Metadata
Entries List<NetworkRouted 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
Routed 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 Routed 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
- Edge
Gateway string - The name of the edge gateway
- Description string
- An optional description of the network
- Dhcp
Pools []NetworkRouted 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
- Interface
Type string - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - Metadata map[string]string
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - Metadata
Entries []NetworkRouted 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
Routed 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 Routed 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
- edge
Gateway String - The name of the edge gateway
- description String
- An optional description of the network
- dhcp
Pools List<NetworkRouted 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
- interface
Type String - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - metadata Map<String,String>
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - metadata
Entries List<NetworkRouted 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
Routed 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 Routed 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
- edge
Gateway string - The name of the edge gateway
- description string
- An optional description of the network
- dhcp
Pools NetworkRouted 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
- interface
Type string - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - metadata {[key: string]: string}
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - metadata
Entries NetworkRouted 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
Routed 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 Routed 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
- edge_
gateway str - The name of the edge gateway
- description str
- An optional description of the network
- dhcp_
pools Sequence[NetworkRouted 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
- interface_
type str - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - metadata Mapping[str, str]
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - metadata_
entries Sequence[NetworkRouted 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_
routed_ 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 Routed 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
- edge
Gateway String - The name of the edge gateway
- 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
- interface
Type String - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - 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
Routed 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 NetworkRouted resource produces the following output properties:
Look up Existing NetworkRouted Resource
Get an existing NetworkRouted 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?: NetworkRoutedState, opts?: CustomResourceOptions): NetworkRouted
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
dhcp_pools: Optional[Sequence[NetworkRoutedDhcpPoolArgs]] = None,
dns1: Optional[str] = None,
dns2: Optional[str] = None,
dns_suffix: Optional[str] = None,
edge_gateway: Optional[str] = None,
gateway: Optional[str] = None,
href: Optional[str] = None,
interface_type: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
metadata_entries: Optional[Sequence[NetworkRoutedMetadataEntryArgs]] = None,
name: Optional[str] = None,
netmask: Optional[str] = None,
network_routed_id: Optional[str] = None,
org: Optional[str] = None,
shared: Optional[bool] = None,
static_ip_pools: Optional[Sequence[NetworkRoutedStaticIpPoolArgs]] = None,
vdc: Optional[str] = None) -> NetworkRouted
func GetNetworkRouted(ctx *Context, name string, id IDInput, state *NetworkRoutedState, opts ...ResourceOption) (*NetworkRouted, error)
public static NetworkRouted Get(string name, Input<string> id, NetworkRoutedState? state, CustomResourceOptions? opts = null)
public static NetworkRouted get(String name, Output<String> id, NetworkRoutedState state, CustomResourceOptions options)
resources: _: type: vcd:NetworkRouted 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<NetworkRouted 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
- Edge
Gateway string - The name of the edge gateway
- Gateway string
- The gateway for this network
- Href string
- Network Hypertext Reference
- Interface
Type string - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - Metadata Dictionary<string, string>
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - Metadata
Entries List<NetworkRouted 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
Routed 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 Routed 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 []NetworkRouted 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
- Edge
Gateway string - The name of the edge gateway
- Gateway string
- The gateway for this network
- Href string
- Network Hypertext Reference
- Interface
Type string - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - Metadata map[string]string
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - Metadata
Entries []NetworkRouted 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
Routed 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 Routed 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<NetworkRouted 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
- edge
Gateway String - The name of the edge gateway
- gateway String
- The gateway for this network
- href String
- Network Hypertext Reference
- interface
Type String - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - metadata Map<String,String>
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - metadata
Entries List<NetworkRouted 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
Routed 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 Routed 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 NetworkRouted 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
- edge
Gateway string - The name of the edge gateway
- gateway string
- The gateway for this network
- href string
- Network Hypertext Reference
- interface
Type string - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - metadata {[key: string]: string}
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - metadata
Entries NetworkRouted 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
Routed 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 Routed 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[NetworkRouted 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
- edge_
gateway str - The name of the edge gateway
- gateway str
- The gateway for this network
- href str
- Network Hypertext Reference
- interface_
type str - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - metadata Mapping[str, str]
- Use
metadata_entry
instead. Key value map of metadata to assign to this network. - metadata_
entries Sequence[NetworkRouted 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_
routed_ 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 Routed 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
- edge
Gateway String - The name of the edge gateway
- gateway String
- The gateway for this network
- href String
- Network Hypertext Reference
- interface
Type String - An interface for the network. One of
internal
(default),subinterface
,distributed
(requires the edge gateway to support distributed networks) - 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
Routed 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
NetworkRoutedDhcpPool, NetworkRoutedDhcpPoolArgs
- 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
NetworkRoutedMetadataEntry, NetworkRoutedMetadataEntryArgs
- 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
NetworkRoutedStaticIpPool, NetworkRoutedStaticIpPoolArgs
- 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.