vcd.Edgegateway
Explore with Pulumi AI
Create Edgegateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Edgegateway(name: string, args: EdgegatewayArgs, opts?: CustomResourceOptions);
@overload
def Edgegateway(resource_name: str,
args: EdgegatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Edgegateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
external_networks: Optional[Sequence[EdgegatewayExternalNetworkArgs]] = None,
configuration: Optional[str] = None,
fw_enabled: Optional[bool] = None,
ha_enabled: Optional[bool] = None,
distributed_routing: Optional[bool] = None,
fips_mode_enabled: Optional[bool] = None,
fw_default_rule_action: Optional[str] = None,
fw_default_rule_logging_enabled: Optional[bool] = None,
description: Optional[str] = None,
edgegateway_id: Optional[str] = None,
lb_acceleration_enabled: Optional[bool] = None,
lb_enabled: Optional[bool] = None,
lb_logging_enabled: Optional[bool] = None,
lb_loglevel: Optional[str] = None,
name: Optional[str] = None,
org: Optional[str] = None,
use_default_route_for_dns_relay: Optional[bool] = None,
vdc: Optional[str] = None)
func NewEdgegateway(ctx *Context, name string, args EdgegatewayArgs, opts ...ResourceOption) (*Edgegateway, error)
public Edgegateway(string name, EdgegatewayArgs args, CustomResourceOptions? opts = null)
public Edgegateway(String name, EdgegatewayArgs args)
public Edgegateway(String name, EdgegatewayArgs args, CustomResourceOptions options)
type: vcd:Edgegateway
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 EdgegatewayArgs
- 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 EdgegatewayArgs
- 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 EdgegatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EdgegatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EdgegatewayArgs
- 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 edgegatewayResource = new Vcd.Edgegateway("edgegatewayResource", new()
{
ExternalNetworks = new[]
{
new Vcd.Inputs.EdgegatewayExternalNetworkArgs
{
Name = "string",
EnableRateLimit = false,
IncomingRateLimit = 0,
OutgoingRateLimit = 0,
Subnets = new[]
{
new Vcd.Inputs.EdgegatewayExternalNetworkSubnetArgs
{
Gateway = "string",
Netmask = "string",
IpAddress = "string",
SuballocatePools = new[]
{
new Vcd.Inputs.EdgegatewayExternalNetworkSubnetSuballocatePoolArgs
{
EndAddress = "string",
StartAddress = "string",
},
},
UseForDefaultRoute = false,
},
},
},
},
Configuration = "string",
FwEnabled = false,
HaEnabled = false,
DistributedRouting = false,
FipsModeEnabled = false,
FwDefaultRuleAction = "string",
FwDefaultRuleLoggingEnabled = false,
Description = "string",
EdgegatewayId = "string",
LbAccelerationEnabled = false,
LbEnabled = false,
LbLoggingEnabled = false,
LbLoglevel = "string",
Name = "string",
Org = "string",
UseDefaultRouteForDnsRelay = false,
Vdc = "string",
});
example, err := vcd.NewEdgegateway(ctx, "edgegatewayResource", &vcd.EdgegatewayArgs{
ExternalNetworks: vcd.EdgegatewayExternalNetworkArray{
&vcd.EdgegatewayExternalNetworkArgs{
Name: pulumi.String("string"),
EnableRateLimit: pulumi.Bool(false),
IncomingRateLimit: pulumi.Float64(0),
OutgoingRateLimit: pulumi.Float64(0),
Subnets: vcd.EdgegatewayExternalNetworkSubnetArray{
&vcd.EdgegatewayExternalNetworkSubnetArgs{
Gateway: pulumi.String("string"),
Netmask: pulumi.String("string"),
IpAddress: pulumi.String("string"),
SuballocatePools: vcd.EdgegatewayExternalNetworkSubnetSuballocatePoolArray{
&vcd.EdgegatewayExternalNetworkSubnetSuballocatePoolArgs{
EndAddress: pulumi.String("string"),
StartAddress: pulumi.String("string"),
},
},
UseForDefaultRoute: pulumi.Bool(false),
},
},
},
},
Configuration: pulumi.String("string"),
FwEnabled: pulumi.Bool(false),
HaEnabled: pulumi.Bool(false),
DistributedRouting: pulumi.Bool(false),
FipsModeEnabled: pulumi.Bool(false),
FwDefaultRuleAction: pulumi.String("string"),
FwDefaultRuleLoggingEnabled: pulumi.Bool(false),
Description: pulumi.String("string"),
EdgegatewayId: pulumi.String("string"),
LbAccelerationEnabled: pulumi.Bool(false),
LbEnabled: pulumi.Bool(false),
LbLoggingEnabled: pulumi.Bool(false),
LbLoglevel: pulumi.String("string"),
Name: pulumi.String("string"),
Org: pulumi.String("string"),
UseDefaultRouteForDnsRelay: pulumi.Bool(false),
Vdc: pulumi.String("string"),
})
var edgegatewayResource = new Edgegateway("edgegatewayResource", EdgegatewayArgs.builder()
.externalNetworks(EdgegatewayExternalNetworkArgs.builder()
.name("string")
.enableRateLimit(false)
.incomingRateLimit(0)
.outgoingRateLimit(0)
.subnets(EdgegatewayExternalNetworkSubnetArgs.builder()
.gateway("string")
.netmask("string")
.ipAddress("string")
.suballocatePools(EdgegatewayExternalNetworkSubnetSuballocatePoolArgs.builder()
.endAddress("string")
.startAddress("string")
.build())
.useForDefaultRoute(false)
.build())
.build())
.configuration("string")
.fwEnabled(false)
.haEnabled(false)
.distributedRouting(false)
.fipsModeEnabled(false)
.fwDefaultRuleAction("string")
.fwDefaultRuleLoggingEnabled(false)
.description("string")
.edgegatewayId("string")
.lbAccelerationEnabled(false)
.lbEnabled(false)
.lbLoggingEnabled(false)
.lbLoglevel("string")
.name("string")
.org("string")
.useDefaultRouteForDnsRelay(false)
.vdc("string")
.build());
edgegateway_resource = vcd.Edgegateway("edgegatewayResource",
external_networks=[{
"name": "string",
"enable_rate_limit": False,
"incoming_rate_limit": 0,
"outgoing_rate_limit": 0,
"subnets": [{
"gateway": "string",
"netmask": "string",
"ip_address": "string",
"suballocate_pools": [{
"end_address": "string",
"start_address": "string",
}],
"use_for_default_route": False,
}],
}],
configuration="string",
fw_enabled=False,
ha_enabled=False,
distributed_routing=False,
fips_mode_enabled=False,
fw_default_rule_action="string",
fw_default_rule_logging_enabled=False,
description="string",
edgegateway_id="string",
lb_acceleration_enabled=False,
lb_enabled=False,
lb_logging_enabled=False,
lb_loglevel="string",
name="string",
org="string",
use_default_route_for_dns_relay=False,
vdc="string")
const edgegatewayResource = new vcd.Edgegateway("edgegatewayResource", {
externalNetworks: [{
name: "string",
enableRateLimit: false,
incomingRateLimit: 0,
outgoingRateLimit: 0,
subnets: [{
gateway: "string",
netmask: "string",
ipAddress: "string",
suballocatePools: [{
endAddress: "string",
startAddress: "string",
}],
useForDefaultRoute: false,
}],
}],
configuration: "string",
fwEnabled: false,
haEnabled: false,
distributedRouting: false,
fipsModeEnabled: false,
fwDefaultRuleAction: "string",
fwDefaultRuleLoggingEnabled: false,
description: "string",
edgegatewayId: "string",
lbAccelerationEnabled: false,
lbEnabled: false,
lbLoggingEnabled: false,
lbLoglevel: "string",
name: "string",
org: "string",
useDefaultRouteForDnsRelay: false,
vdc: "string",
});
type: vcd:Edgegateway
properties:
configuration: string
description: string
distributedRouting: false
edgegatewayId: string
externalNetworks:
- enableRateLimit: false
incomingRateLimit: 0
name: string
outgoingRateLimit: 0
subnets:
- gateway: string
ipAddress: string
netmask: string
suballocatePools:
- endAddress: string
startAddress: string
useForDefaultRoute: false
fipsModeEnabled: false
fwDefaultRuleAction: string
fwDefaultRuleLoggingEnabled: false
fwEnabled: false
haEnabled: false
lbAccelerationEnabled: false
lbEnabled: false
lbLoggingEnabled: false
lbLoglevel: string
name: string
org: string
useDefaultRouteForDnsRelay: false
vdc: string
Edgegateway 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 Edgegateway resource accepts the following input properties:
- Configuration string
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - External
Networks List<EdgegatewayExternal Network> - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- Description string
- Distributed
Routing bool - If advanced networking enabled, also enable distributed
routing. Default is
false
. - Edgegateway
Id string - Fips
Mode boolEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - Fw
Default stringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- Fw
Default boolRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - Fw
Enabled bool - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - Ha
Enabled bool - Enable high availability on this edge gateway. Default is
false
. - Lb
Acceleration boolEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - Lb
Enabled bool - Enable load balancing. Default is
false
. - Lb
Logging boolEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - Lb
Loglevel string - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- Name string
- A unique name for the edge gateway.
- Org string
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- Use
Default boolRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - Vdc string
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- Configuration string
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - External
Networks []EdgegatewayExternal Network Args - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- Description string
- Distributed
Routing bool - If advanced networking enabled, also enable distributed
routing. Default is
false
. - Edgegateway
Id string - Fips
Mode boolEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - Fw
Default stringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- Fw
Default boolRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - Fw
Enabled bool - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - Ha
Enabled bool - Enable high availability on this edge gateway. Default is
false
. - Lb
Acceleration boolEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - Lb
Enabled bool - Enable load balancing. Default is
false
. - Lb
Logging boolEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - Lb
Loglevel string - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- Name string
- A unique name for the edge gateway.
- Org string
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- Use
Default boolRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - Vdc string
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration String
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - external
Networks List<EdgegatewayExternal Network> - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- description String
- distributed
Routing Boolean - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway
Id String - fips
Mode BooleanEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw
Default StringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw
Default BooleanRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw
Enabled Boolean - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha
Enabled Boolean - Enable high availability on this edge gateway. Default is
false
. - lb
Acceleration BooleanEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb
Enabled Boolean - Enable load balancing. Default is
false
. - lb
Logging BooleanEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb
Loglevel String - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name String
- A unique name for the edge gateway.
- org String
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use
Default BooleanRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc String
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration string
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - external
Networks EdgegatewayExternal Network[] - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- description string
- distributed
Routing boolean - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway
Id string - fips
Mode booleanEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw
Default stringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw
Default booleanRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw
Enabled boolean - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha
Enabled boolean - Enable high availability on this edge gateway. Default is
false
. - lb
Acceleration booleanEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb
Enabled boolean - Enable load balancing. Default is
false
. - lb
Logging booleanEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb
Loglevel string - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name string
- A unique name for the edge gateway.
- org string
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use
Default booleanRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc string
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration str
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - external_
networks Sequence[EdgegatewayExternal Network Args] - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- description str
- distributed_
routing bool - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway_
id str - fips_
mode_ boolenabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw_
default_ strrule_ action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw_
default_ boolrule_ logging_ enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw_
enabled bool - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha_
enabled bool - Enable high availability on this edge gateway. Default is
false
. - lb_
acceleration_ boolenabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb_
enabled bool - Enable load balancing. Default is
false
. - lb_
logging_ boolenabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb_
loglevel str - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name str
- A unique name for the edge gateway.
- org str
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use_
default_ boolroute_ for_ dns_ relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc str
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration String
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - external
Networks List<Property Map> - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- description String
- distributed
Routing Boolean - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway
Id String - fips
Mode BooleanEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw
Default StringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw
Default BooleanRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw
Enabled Boolean - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha
Enabled Boolean - Enable high availability on this edge gateway. Default is
false
. - lb
Acceleration BooleanEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb
Enabled Boolean - Enable load balancing. Default is
false
. - lb
Logging BooleanEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb
Loglevel String - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name String
- A unique name for the edge gateway.
- org String
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use
Default BooleanRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc String
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
Outputs
All input properties are implicitly available as output properties. Additionally, the Edgegateway resource produces the following output properties:
- Default
External stringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- External
Network List<string>Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- Id string
- The provider-assigned unique ID for this managed resource.
- Default
External stringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- External
Network []stringIps - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- Id string
- The provider-assigned unique ID for this managed resource.
- default
External StringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- external
Network List<String>Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- id String
- The provider-assigned unique ID for this managed resource.
- default
External stringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- external
Network string[]Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- id string
- The provider-assigned unique ID for this managed resource.
- default_
external_ strnetwork_ ip - (v2.6+) - IP address of edge gateway used for default network
- external_
network_ Sequence[str]ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- id str
- The provider-assigned unique ID for this managed resource.
- default
External StringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- external
Network List<String>Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Edgegateway Resource
Get an existing Edgegateway 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?: EdgegatewayState, opts?: CustomResourceOptions): Edgegateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[str] = None,
default_external_network_ip: Optional[str] = None,
description: Optional[str] = None,
distributed_routing: Optional[bool] = None,
edgegateway_id: Optional[str] = None,
external_network_ips: Optional[Sequence[str]] = None,
external_networks: Optional[Sequence[EdgegatewayExternalNetworkArgs]] = None,
fips_mode_enabled: Optional[bool] = None,
fw_default_rule_action: Optional[str] = None,
fw_default_rule_logging_enabled: Optional[bool] = None,
fw_enabled: Optional[bool] = None,
ha_enabled: Optional[bool] = None,
lb_acceleration_enabled: Optional[bool] = None,
lb_enabled: Optional[bool] = None,
lb_logging_enabled: Optional[bool] = None,
lb_loglevel: Optional[str] = None,
name: Optional[str] = None,
org: Optional[str] = None,
use_default_route_for_dns_relay: Optional[bool] = None,
vdc: Optional[str] = None) -> Edgegateway
func GetEdgegateway(ctx *Context, name string, id IDInput, state *EdgegatewayState, opts ...ResourceOption) (*Edgegateway, error)
public static Edgegateway Get(string name, Input<string> id, EdgegatewayState? state, CustomResourceOptions? opts = null)
public static Edgegateway get(String name, Output<String> id, EdgegatewayState state, CustomResourceOptions options)
resources: _: type: vcd:Edgegateway 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.
- Configuration string
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - Default
External stringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- Description string
- Distributed
Routing bool - If advanced networking enabled, also enable distributed
routing. Default is
false
. - Edgegateway
Id string - External
Network List<string>Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- External
Networks List<EdgegatewayExternal Network> - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- Fips
Mode boolEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - Fw
Default stringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- Fw
Default boolRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - Fw
Enabled bool - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - Ha
Enabled bool - Enable high availability on this edge gateway. Default is
false
. - Lb
Acceleration boolEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - Lb
Enabled bool - Enable load balancing. Default is
false
. - Lb
Logging boolEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - Lb
Loglevel string - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- Name string
- A unique name for the edge gateway.
- Org string
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- Use
Default boolRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - Vdc string
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- Configuration string
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - Default
External stringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- Description string
- Distributed
Routing bool - If advanced networking enabled, also enable distributed
routing. Default is
false
. - Edgegateway
Id string - External
Network []stringIps - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- External
Networks []EdgegatewayExternal Network Args - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- Fips
Mode boolEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - Fw
Default stringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- Fw
Default boolRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - Fw
Enabled bool - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - Ha
Enabled bool - Enable high availability on this edge gateway. Default is
false
. - Lb
Acceleration boolEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - Lb
Enabled bool - Enable load balancing. Default is
false
. - Lb
Logging boolEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - Lb
Loglevel string - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- Name string
- A unique name for the edge gateway.
- Org string
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- Use
Default boolRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - Vdc string
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration String
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - default
External StringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- description String
- distributed
Routing Boolean - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway
Id String - external
Network List<String>Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- external
Networks List<EdgegatewayExternal Network> - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- fips
Mode BooleanEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw
Default StringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw
Default BooleanRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw
Enabled Boolean - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha
Enabled Boolean - Enable high availability on this edge gateway. Default is
false
. - lb
Acceleration BooleanEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb
Enabled Boolean - Enable load balancing. Default is
false
. - lb
Logging BooleanEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb
Loglevel String - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name String
- A unique name for the edge gateway.
- org String
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use
Default BooleanRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc String
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration string
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - default
External stringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- description string
- distributed
Routing boolean - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway
Id string - external
Network string[]Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- external
Networks EdgegatewayExternal Network[] - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- fips
Mode booleanEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw
Default stringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw
Default booleanRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw
Enabled boolean - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha
Enabled boolean - Enable high availability on this edge gateway. Default is
false
. - lb
Acceleration booleanEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb
Enabled boolean - Enable load balancing. Default is
false
. - lb
Logging booleanEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb
Loglevel string - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name string
- A unique name for the edge gateway.
- org string
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use
Default booleanRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc string
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration str
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - default_
external_ strnetwork_ ip - (v2.6+) - IP address of edge gateway used for default network
- description str
- distributed_
routing bool - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway_
id str - external_
network_ Sequence[str]ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- external_
networks Sequence[EdgegatewayExternal Network Args] - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- fips_
mode_ boolenabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw_
default_ strrule_ action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw_
default_ boolrule_ logging_ enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw_
enabled bool - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha_
enabled bool - Enable high availability on this edge gateway. Default is
false
. - lb_
acceleration_ boolenabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb_
enabled bool - Enable load balancing. Default is
false
. - lb_
logging_ boolenabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb_
loglevel str - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name str
- A unique name for the edge gateway.
- org str
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use_
default_ boolroute_ for_ dns_ relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc str
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
- configuration String
- Configuration of the vShield edge VM for this gateway. One of:
compact
,full
("Large"),x-large
,full4
("Quad Large"). - default
External StringNetwork Ip - (v2.6+) - IP address of edge gateway used for default network
- description String
- distributed
Routing Boolean - If advanced networking enabled, also enable distributed
routing. Default is
false
. - edgegateway
Id String - external
Network List<String>Ips - (v2.6+) - A list of IP addresses assigned to edge gateway interfaces connected to external networks.
- external
Networks List<Property Map> - One or more blocks defining external networks, their subnets, IP addresses and IP pool suballocation attached to edge gateway interfaces. Details are in external network block below.
- fips
Mode BooleanEnabled - When FIPS mode is enabled, any secure communication to or from
the NSX Edge uses cryptographic algorithms or protocols that are allowed by United States Federal
Information Processing Standards (FIPS). FIPS mode turns on the cipher suites that comply with
FIPS. Default is
false
. Note: to use FIPS mode it must be enabled in vCD system settings. - fw
Default StringRule Action Default firewall rule (last in the processing order) action. One of
accept
ordeny
. Defaultdeny
.- fw
Default BooleanRule Logging Enabled - Enable default firewall rule (last in the processing
order) logging. Default
false
. - fw
Enabled Boolean - Enable firewall. Default
true
. Note: Disabling Firewall will also disable NAT and other NAT dependent features like Load Balancer. - ha
Enabled Boolean - Enable high availability on this edge gateway. Default is
false
. - lb
Acceleration BooleanEnabled - Enable to configure the load balancer to use the faster L4
engine rather than L7 engine. The L4 TCP VIP is processed before the edge gateway firewall so no
allow
firewall rule is required. Default isfalse
. Note: L7 VIPs for HTTP and HTTPS are processed after the firewall, so when Acceleration Enabled is not selected, an edge gateway firewall rule must exist to allow access to the L7 VIP for those protocols. When Acceleration Enabled is selected and the server pool is in non-transparent mode, an SNAT rule is added, so you must ensure that the firewall is enabled on the edge gateway. - lb
Enabled Boolean - Enable load balancing. Default is
false
. - lb
Logging BooleanEnabled - Enables the edge gateway load balancer to collect traffic logs.
Default is
false
. - lb
Loglevel String - Choose the severity of events to be logged. One of
emergency
,alert
,critical
,error
,warning
,notice
,info
,debug
- name String
- A unique name for the edge gateway.
- org String
- The name of organization to which the VDC belongs. Optional if defined at provider level.
- use
Default BooleanRoute For Dns Relay - When default route is set, it will be used for
gateways' default routing and DNS forwarding. Default is
false
. - vdc String
- The name of VDC that owns the edge gateway. Optional if defined at provider level.
Supporting Types
EdgegatewayExternalNetwork, EdgegatewayExternalNetworkArgs
- Name string
- A unique name for the edge gateway.
- Enable
Rate boolLimit - Enable rate limiting
- Incoming
Rate doubleLimit - Incoming rate limit (Mbps)
- Outgoing
Rate doubleLimit - Outgoing rate limit (Mbps)
- Subnets
List<Edgegateway
External Network Subnet>
- Name string
- A unique name for the edge gateway.
- Enable
Rate boolLimit - Enable rate limiting
- Incoming
Rate float64Limit - Incoming rate limit (Mbps)
- Outgoing
Rate float64Limit - Outgoing rate limit (Mbps)
- Subnets
[]Edgegateway
External Network Subnet
- name String
- A unique name for the edge gateway.
- enable
Rate BooleanLimit - Enable rate limiting
- incoming
Rate DoubleLimit - Incoming rate limit (Mbps)
- outgoing
Rate DoubleLimit - Outgoing rate limit (Mbps)
- subnets
List<Edgegateway
External Network Subnet>
- name string
- A unique name for the edge gateway.
- enable
Rate booleanLimit - Enable rate limiting
- incoming
Rate numberLimit - Incoming rate limit (Mbps)
- outgoing
Rate numberLimit - Outgoing rate limit (Mbps)
- subnets
Edgegateway
External Network Subnet[]
- name str
- A unique name for the edge gateway.
- enable_
rate_ boollimit - Enable rate limiting
- incoming_
rate_ floatlimit - Incoming rate limit (Mbps)
- outgoing_
rate_ floatlimit - Outgoing rate limit (Mbps)
- subnets
Sequence[Edgegateway
External Network Subnet]
- name String
- A unique name for the edge gateway.
- enable
Rate BooleanLimit - Enable rate limiting
- incoming
Rate NumberLimit - Incoming rate limit (Mbps)
- outgoing
Rate NumberLimit - Outgoing rate limit (Mbps)
- subnets List<Property Map>
EdgegatewayExternalNetworkSubnet, EdgegatewayExternalNetworkSubnetArgs
- Gateway string
- Gateway address for a subnet
- Netmask string
- Netmask address for a subnet
- Ip
Address string - IP address on the edge gateway - will be auto-assigned if not defined
- Suballocate
Pools List<EdgegatewayExternal Network Subnet Suballocate Pool> - Define zero or more blocks to sub-allocate pools on the edge gateway
- Use
For boolDefault Route - Defines if this subnet should be used as default gateway for edge
- Gateway string
- Gateway address for a subnet
- Netmask string
- Netmask address for a subnet
- Ip
Address string - IP address on the edge gateway - will be auto-assigned if not defined
- Suballocate
Pools []EdgegatewayExternal Network Subnet Suballocate Pool - Define zero or more blocks to sub-allocate pools on the edge gateway
- Use
For boolDefault Route - Defines if this subnet should be used as default gateway for edge
- gateway String
- Gateway address for a subnet
- netmask String
- Netmask address for a subnet
- ip
Address String - IP address on the edge gateway - will be auto-assigned if not defined
- suballocate
Pools List<EdgegatewayExternal Network Subnet Suballocate Pool> - Define zero or more blocks to sub-allocate pools on the edge gateway
- use
For BooleanDefault Route - Defines if this subnet should be used as default gateway for edge
- gateway string
- Gateway address for a subnet
- netmask string
- Netmask address for a subnet
- ip
Address string - IP address on the edge gateway - will be auto-assigned if not defined
- suballocate
Pools EdgegatewayExternal Network Subnet Suballocate Pool[] - Define zero or more blocks to sub-allocate pools on the edge gateway
- use
For booleanDefault Route - Defines if this subnet should be used as default gateway for edge
- gateway str
- Gateway address for a subnet
- netmask str
- Netmask address for a subnet
- ip_
address str - IP address on the edge gateway - will be auto-assigned if not defined
- suballocate_
pools Sequence[EdgegatewayExternal Network Subnet Suballocate Pool] - Define zero or more blocks to sub-allocate pools on the edge gateway
- use_
for_ booldefault_ route - Defines if this subnet should be used as default gateway for edge
- gateway String
- Gateway address for a subnet
- netmask String
- Netmask address for a subnet
- ip
Address String - IP address on the edge gateway - will be auto-assigned if not defined
- suballocate
Pools List<Property Map> - Define zero or more blocks to sub-allocate pools on the edge gateway
- use
For BooleanDefault Route - Defines if this subnet should be used as default gateway for edge
EdgegatewayExternalNetworkSubnetSuballocatePool, EdgegatewayExternalNetworkSubnetSuballocatePoolArgs
- End
Address string - Start
Address string
- End
Address string - Start
Address string
- end
Address String - start
Address String
- end
Address string - start
Address string
- end_
address str - start_
address str
- end
Address String - start
Address String
Package Details
- Repository
- vcd vmware/terraform-provider-vcd
- License
- Notes
- This Pulumi package is based on the
vcd
Terraform Provider.