1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyTier0GatewayGreTunnel
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

nsxt.PolicyTier0GatewayGreTunnel

Explore with Pulumi AI

Create PolicyTier0GatewayGreTunnel Resource

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

Constructor syntax

new PolicyTier0GatewayGreTunnel(name: string, args: PolicyTier0GatewayGreTunnelArgs, opts?: CustomResourceOptions);
@overload
def PolicyTier0GatewayGreTunnel(resource_name: str,
                                args: PolicyTier0GatewayGreTunnelArgs,
                                opts: Optional[ResourceOptions] = None)

@overload
def PolicyTier0GatewayGreTunnel(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                destination_address: Optional[str] = None,
                                display_name: Optional[str] = None,
                                locale_service_path: Optional[str] = None,
                                tunnel_addresses: Optional[Sequence[PolicyTier0GatewayGreTunnelTunnelAddressArgs]] = None,
                                description: Optional[str] = None,
                                enabled: Optional[bool] = None,
                                mtu: Optional[float] = None,
                                nsx_id: Optional[str] = None,
                                policy_tier0_gateway_gre_tunnel_id: Optional[str] = None,
                                tags: Optional[Sequence[PolicyTier0GatewayGreTunnelTagArgs]] = None,
                                tunnel_keepalive: Optional[PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs] = None)
func NewPolicyTier0GatewayGreTunnel(ctx *Context, name string, args PolicyTier0GatewayGreTunnelArgs, opts ...ResourceOption) (*PolicyTier0GatewayGreTunnel, error)
public PolicyTier0GatewayGreTunnel(string name, PolicyTier0GatewayGreTunnelArgs args, CustomResourceOptions? opts = null)
public PolicyTier0GatewayGreTunnel(String name, PolicyTier0GatewayGreTunnelArgs args)
public PolicyTier0GatewayGreTunnel(String name, PolicyTier0GatewayGreTunnelArgs args, CustomResourceOptions options)
type: nsxt:PolicyTier0GatewayGreTunnel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PolicyTier0GatewayGreTunnelArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PolicyTier0GatewayGreTunnelArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyTier0GatewayGreTunnelArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyTier0GatewayGreTunnelArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PolicyTier0GatewayGreTunnelArgs
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 policyTier0GatewayGreTunnelResource = new Nsxt.PolicyTier0GatewayGreTunnel("policyTier0GatewayGreTunnelResource", new()
{
    DestinationAddress = "string",
    DisplayName = "string",
    LocaleServicePath = "string",
    TunnelAddresses = new[]
    {
        new Nsxt.Inputs.PolicyTier0GatewayGreTunnelTunnelAddressArgs
        {
            EdgePath = "string",
            SourceAddress = "string",
            TunnelInterfaceSubnets = new[]
            {
                new Nsxt.Inputs.PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnetArgs
                {
                    IpAddresses = new[]
                    {
                        "string",
                    },
                    PrefixLen = 0,
                },
            },
        },
    },
    Description = "string",
    Enabled = false,
    Mtu = 0,
    NsxId = "string",
    PolicyTier0GatewayGreTunnelId = "string",
    Tags = new[]
    {
        new Nsxt.Inputs.PolicyTier0GatewayGreTunnelTagArgs
        {
            Scope = "string",
            Tag = "string",
        },
    },
    TunnelKeepalive = new Nsxt.Inputs.PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs
    {
        DeadTimeMultiplier = 0,
        EnableKeepaliveAck = false,
        Enabled = false,
        KeepaliveInterval = 0,
    },
});
Copy
example, err := nsxt.NewPolicyTier0GatewayGreTunnel(ctx, "policyTier0GatewayGreTunnelResource", &nsxt.PolicyTier0GatewayGreTunnelArgs{
	DestinationAddress: pulumi.String("string"),
	DisplayName:        pulumi.String("string"),
	LocaleServicePath:  pulumi.String("string"),
	TunnelAddresses: nsxt.PolicyTier0GatewayGreTunnelTunnelAddressArray{
		&nsxt.PolicyTier0GatewayGreTunnelTunnelAddressArgs{
			EdgePath:      pulumi.String("string"),
			SourceAddress: pulumi.String("string"),
			TunnelInterfaceSubnets: nsxt.PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnetArray{
				&nsxt.PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnetArgs{
					IpAddresses: pulumi.StringArray{
						pulumi.String("string"),
					},
					PrefixLen: pulumi.Float64(0),
				},
			},
		},
	},
	Description:                   pulumi.String("string"),
	Enabled:                       pulumi.Bool(false),
	Mtu:                           pulumi.Float64(0),
	NsxId:                         pulumi.String("string"),
	PolicyTier0GatewayGreTunnelId: pulumi.String("string"),
	Tags: nsxt.PolicyTier0GatewayGreTunnelTagArray{
		&nsxt.PolicyTier0GatewayGreTunnelTagArgs{
			Scope: pulumi.String("string"),
			Tag:   pulumi.String("string"),
		},
	},
	TunnelKeepalive: &nsxt.PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs{
		DeadTimeMultiplier: pulumi.Float64(0),
		EnableKeepaliveAck: pulumi.Bool(false),
		Enabled:            pulumi.Bool(false),
		KeepaliveInterval:  pulumi.Float64(0),
	},
})
Copy
var policyTier0GatewayGreTunnelResource = new PolicyTier0GatewayGreTunnel("policyTier0GatewayGreTunnelResource", PolicyTier0GatewayGreTunnelArgs.builder()
    .destinationAddress("string")
    .displayName("string")
    .localeServicePath("string")
    .tunnelAddresses(PolicyTier0GatewayGreTunnelTunnelAddressArgs.builder()
        .edgePath("string")
        .sourceAddress("string")
        .tunnelInterfaceSubnets(PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnetArgs.builder()
            .ipAddresses("string")
            .prefixLen(0)
            .build())
        .build())
    .description("string")
    .enabled(false)
    .mtu(0)
    .nsxId("string")
    .policyTier0GatewayGreTunnelId("string")
    .tags(PolicyTier0GatewayGreTunnelTagArgs.builder()
        .scope("string")
        .tag("string")
        .build())
    .tunnelKeepalive(PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs.builder()
        .deadTimeMultiplier(0)
        .enableKeepaliveAck(false)
        .enabled(false)
        .keepaliveInterval(0)
        .build())
    .build());
Copy
policy_tier0_gateway_gre_tunnel_resource = nsxt.PolicyTier0GatewayGreTunnel("policyTier0GatewayGreTunnelResource",
    destination_address="string",
    display_name="string",
    locale_service_path="string",
    tunnel_addresses=[{
        "edge_path": "string",
        "source_address": "string",
        "tunnel_interface_subnets": [{
            "ip_addresses": ["string"],
            "prefix_len": 0,
        }],
    }],
    description="string",
    enabled=False,
    mtu=0,
    nsx_id="string",
    policy_tier0_gateway_gre_tunnel_id="string",
    tags=[{
        "scope": "string",
        "tag": "string",
    }],
    tunnel_keepalive={
        "dead_time_multiplier": 0,
        "enable_keepalive_ack": False,
        "enabled": False,
        "keepalive_interval": 0,
    })
Copy
const policyTier0GatewayGreTunnelResource = new nsxt.PolicyTier0GatewayGreTunnel("policyTier0GatewayGreTunnelResource", {
    destinationAddress: "string",
    displayName: "string",
    localeServicePath: "string",
    tunnelAddresses: [{
        edgePath: "string",
        sourceAddress: "string",
        tunnelInterfaceSubnets: [{
            ipAddresses: ["string"],
            prefixLen: 0,
        }],
    }],
    description: "string",
    enabled: false,
    mtu: 0,
    nsxId: "string",
    policyTier0GatewayGreTunnelId: "string",
    tags: [{
        scope: "string",
        tag: "string",
    }],
    tunnelKeepalive: {
        deadTimeMultiplier: 0,
        enableKeepaliveAck: false,
        enabled: false,
        keepaliveInterval: 0,
    },
});
Copy
type: nsxt:PolicyTier0GatewayGreTunnel
properties:
    description: string
    destinationAddress: string
    displayName: string
    enabled: false
    localeServicePath: string
    mtu: 0
    nsxId: string
    policyTier0GatewayGreTunnelId: string
    tags:
        - scope: string
          tag: string
    tunnelAddresses:
        - edgePath: string
          sourceAddress: string
          tunnelInterfaceSubnets:
            - ipAddresses:
                - string
              prefixLen: 0
    tunnelKeepalive:
        deadTimeMultiplier: 0
        enableKeepaliveAck: false
        enabled: false
        keepaliveInterval: 0
Copy

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

DestinationAddress This property is required. string
Destination IPv4 address.
DisplayName This property is required. string
Display name of the resource.
LocaleServicePath This property is required. string
Policy path of associated Gateway Locale Service on NSX.
TunnelAddresses This property is required. List<PolicyTier0GatewayGreTunnelTunnelAddress>
Tunnel Address object parameter. At least one is required, maximum is 8.
Description string
Description of the resource.
Enabled bool
Enable/Disable Tunnel. Default is true.
Mtu double
Maximum transmission unit. Default is 1476.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
PolicyTier0GatewayGreTunnelId string
ID of the resource.
Tags List<PolicyTier0GatewayGreTunnelTag>
A list of scope + tag pairs to associate with this resource.
TunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepalive
tunnel keep alive object. One is required.
DestinationAddress This property is required. string
Destination IPv4 address.
DisplayName This property is required. string
Display name of the resource.
LocaleServicePath This property is required. string
Policy path of associated Gateway Locale Service on NSX.
TunnelAddresses This property is required. []PolicyTier0GatewayGreTunnelTunnelAddressArgs
Tunnel Address object parameter. At least one is required, maximum is 8.
Description string
Description of the resource.
Enabled bool
Enable/Disable Tunnel. Default is true.
Mtu float64
Maximum transmission unit. Default is 1476.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
PolicyTier0GatewayGreTunnelId string
ID of the resource.
Tags []PolicyTier0GatewayGreTunnelTagArgs
A list of scope + tag pairs to associate with this resource.
TunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs
tunnel keep alive object. One is required.
destinationAddress This property is required. String
Destination IPv4 address.
displayName This property is required. String
Display name of the resource.
localeServicePath This property is required. String
Policy path of associated Gateway Locale Service on NSX.
tunnelAddresses This property is required. List<PolicyTier0GatewayGreTunnelTunnelAddress>
Tunnel Address object parameter. At least one is required, maximum is 8.
description String
Description of the resource.
enabled Boolean
Enable/Disable Tunnel. Default is true.
mtu Double
Maximum transmission unit. Default is 1476.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policyTier0GatewayGreTunnelId String
ID of the resource.
tags List<PolicyTier0GatewayGreTunnelTag>
A list of scope + tag pairs to associate with this resource.
tunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepalive
tunnel keep alive object. One is required.
destinationAddress This property is required. string
Destination IPv4 address.
displayName This property is required. string
Display name of the resource.
localeServicePath This property is required. string
Policy path of associated Gateway Locale Service on NSX.
tunnelAddresses This property is required. PolicyTier0GatewayGreTunnelTunnelAddress[]
Tunnel Address object parameter. At least one is required, maximum is 8.
description string
Description of the resource.
enabled boolean
Enable/Disable Tunnel. Default is true.
mtu number
Maximum transmission unit. Default is 1476.
nsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policyTier0GatewayGreTunnelId string
ID of the resource.
tags PolicyTier0GatewayGreTunnelTag[]
A list of scope + tag pairs to associate with this resource.
tunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepalive
tunnel keep alive object. One is required.
destination_address This property is required. str
Destination IPv4 address.
display_name This property is required. str
Display name of the resource.
locale_service_path This property is required. str
Policy path of associated Gateway Locale Service on NSX.
tunnel_addresses This property is required. Sequence[PolicyTier0GatewayGreTunnelTunnelAddressArgs]
Tunnel Address object parameter. At least one is required, maximum is 8.
description str
Description of the resource.
enabled bool
Enable/Disable Tunnel. Default is true.
mtu float
Maximum transmission unit. Default is 1476.
nsx_id str
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policy_tier0_gateway_gre_tunnel_id str
ID of the resource.
tags Sequence[PolicyTier0GatewayGreTunnelTagArgs]
A list of scope + tag pairs to associate with this resource.
tunnel_keepalive PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs
tunnel keep alive object. One is required.
destinationAddress This property is required. String
Destination IPv4 address.
displayName This property is required. String
Display name of the resource.
localeServicePath This property is required. String
Policy path of associated Gateway Locale Service on NSX.
tunnelAddresses This property is required. List<Property Map>
Tunnel Address object parameter. At least one is required, maximum is 8.
description String
Description of the resource.
enabled Boolean
Enable/Disable Tunnel. Default is true.
mtu Number
Maximum transmission unit. Default is 1476.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
policyTier0GatewayGreTunnelId String
ID of the resource.
tags List<Property Map>
A list of scope + tag pairs to associate with this resource.
tunnelKeepalive Property Map
tunnel keep alive object. One is required.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Path string
The NSX path of the policy resource.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Id string
The provider-assigned unique ID for this managed resource.
Path string
The NSX path of the policy resource.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id String
The provider-assigned unique ID for this managed resource.
path String
The NSX path of the policy resource.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id string
The provider-assigned unique ID for this managed resource.
path string
The NSX path of the policy resource.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id str
The provider-assigned unique ID for this managed resource.
path str
The NSX path of the policy resource.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id String
The provider-assigned unique ID for this managed resource.
path String
The NSX path of the policy resource.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

Look up Existing PolicyTier0GatewayGreTunnel Resource

Get an existing PolicyTier0GatewayGreTunnel 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?: PolicyTier0GatewayGreTunnelState, opts?: CustomResourceOptions): PolicyTier0GatewayGreTunnel
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        destination_address: Optional[str] = None,
        display_name: Optional[str] = None,
        enabled: Optional[bool] = None,
        locale_service_path: Optional[str] = None,
        mtu: Optional[float] = None,
        nsx_id: Optional[str] = None,
        path: Optional[str] = None,
        policy_tier0_gateway_gre_tunnel_id: Optional[str] = None,
        revision: Optional[float] = None,
        tags: Optional[Sequence[PolicyTier0GatewayGreTunnelTagArgs]] = None,
        tunnel_addresses: Optional[Sequence[PolicyTier0GatewayGreTunnelTunnelAddressArgs]] = None,
        tunnel_keepalive: Optional[PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs] = None) -> PolicyTier0GatewayGreTunnel
func GetPolicyTier0GatewayGreTunnel(ctx *Context, name string, id IDInput, state *PolicyTier0GatewayGreTunnelState, opts ...ResourceOption) (*PolicyTier0GatewayGreTunnel, error)
public static PolicyTier0GatewayGreTunnel Get(string name, Input<string> id, PolicyTier0GatewayGreTunnelState? state, CustomResourceOptions? opts = null)
public static PolicyTier0GatewayGreTunnel get(String name, Output<String> id, PolicyTier0GatewayGreTunnelState state, CustomResourceOptions options)
resources:  _:    type: nsxt:PolicyTier0GatewayGreTunnel    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Description string
Description of the resource.
DestinationAddress string
Destination IPv4 address.
DisplayName string
Display name of the resource.
Enabled bool
Enable/Disable Tunnel. Default is true.
LocaleServicePath string
Policy path of associated Gateway Locale Service on NSX.
Mtu double
Maximum transmission unit. Default is 1476.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
Path string
The NSX path of the policy resource.
PolicyTier0GatewayGreTunnelId string
ID of the resource.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Tags List<PolicyTier0GatewayGreTunnelTag>
A list of scope + tag pairs to associate with this resource.
TunnelAddresses List<PolicyTier0GatewayGreTunnelTunnelAddress>
Tunnel Address object parameter. At least one is required, maximum is 8.
TunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepalive
tunnel keep alive object. One is required.
Description string
Description of the resource.
DestinationAddress string
Destination IPv4 address.
DisplayName string
Display name of the resource.
Enabled bool
Enable/Disable Tunnel. Default is true.
LocaleServicePath string
Policy path of associated Gateway Locale Service on NSX.
Mtu float64
Maximum transmission unit. Default is 1476.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
Path string
The NSX path of the policy resource.
PolicyTier0GatewayGreTunnelId string
ID of the resource.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Tags []PolicyTier0GatewayGreTunnelTagArgs
A list of scope + tag pairs to associate with this resource.
TunnelAddresses []PolicyTier0GatewayGreTunnelTunnelAddressArgs
Tunnel Address object parameter. At least one is required, maximum is 8.
TunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs
tunnel keep alive object. One is required.
description String
Description of the resource.
destinationAddress String
Destination IPv4 address.
displayName String
Display name of the resource.
enabled Boolean
Enable/Disable Tunnel. Default is true.
localeServicePath String
Policy path of associated Gateway Locale Service on NSX.
mtu Double
Maximum transmission unit. Default is 1476.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
path String
The NSX path of the policy resource.
policyTier0GatewayGreTunnelId String
ID of the resource.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags List<PolicyTier0GatewayGreTunnelTag>
A list of scope + tag pairs to associate with this resource.
tunnelAddresses List<PolicyTier0GatewayGreTunnelTunnelAddress>
Tunnel Address object parameter. At least one is required, maximum is 8.
tunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepalive
tunnel keep alive object. One is required.
description string
Description of the resource.
destinationAddress string
Destination IPv4 address.
displayName string
Display name of the resource.
enabled boolean
Enable/Disable Tunnel. Default is true.
localeServicePath string
Policy path of associated Gateway Locale Service on NSX.
mtu number
Maximum transmission unit. Default is 1476.
nsxId string
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
path string
The NSX path of the policy resource.
policyTier0GatewayGreTunnelId string
ID of the resource.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags PolicyTier0GatewayGreTunnelTag[]
A list of scope + tag pairs to associate with this resource.
tunnelAddresses PolicyTier0GatewayGreTunnelTunnelAddress[]
Tunnel Address object parameter. At least one is required, maximum is 8.
tunnelKeepalive PolicyTier0GatewayGreTunnelTunnelKeepalive
tunnel keep alive object. One is required.
description str
Description of the resource.
destination_address str
Destination IPv4 address.
display_name str
Display name of the resource.
enabled bool
Enable/Disable Tunnel. Default is true.
locale_service_path str
Policy path of associated Gateway Locale Service on NSX.
mtu float
Maximum transmission unit. Default is 1476.
nsx_id str
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
path str
The NSX path of the policy resource.
policy_tier0_gateway_gre_tunnel_id str
ID of the resource.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags Sequence[PolicyTier0GatewayGreTunnelTagArgs]
A list of scope + tag pairs to associate with this resource.
tunnel_addresses Sequence[PolicyTier0GatewayGreTunnelTunnelAddressArgs]
Tunnel Address object parameter. At least one is required, maximum is 8.
tunnel_keepalive PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs
tunnel keep alive object. One is required.
description String
Description of the resource.
destinationAddress String
Destination IPv4 address.
displayName String
Display name of the resource.
enabled Boolean
Enable/Disable Tunnel. Default is true.
localeServicePath String
Policy path of associated Gateway Locale Service on NSX.
mtu Number
Maximum transmission unit. Default is 1476.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the policy resource.
path String
The NSX path of the policy resource.
policyTier0GatewayGreTunnelId String
ID of the resource.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags List<Property Map>
A list of scope + tag pairs to associate with this resource.
tunnelAddresses List<Property Map>
Tunnel Address object parameter. At least one is required, maximum is 8.
tunnelKeepalive Property Map
tunnel keep alive object. One is required.

Supporting Types

PolicyTier0GatewayGreTunnelTag
, PolicyTier0GatewayGreTunnelTagArgs

Scope string
Tag string
A list of scope + tag pairs to associate with this resource.
Scope string
Tag string
A list of scope + tag pairs to associate with this resource.
scope String
tag String
A list of scope + tag pairs to associate with this resource.
scope string
tag string
A list of scope + tag pairs to associate with this resource.
scope str
tag str
A list of scope + tag pairs to associate with this resource.
scope String
tag String
A list of scope + tag pairs to associate with this resource.

PolicyTier0GatewayGreTunnelTunnelAddress
, PolicyTier0GatewayGreTunnelTunnelAddressArgs

EdgePath This property is required. string
Policy edge node path.
SourceAddress This property is required. string
IPv4 source address.
TunnelInterfaceSubnets This property is required. List<PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnet>
Interface Subnet object parameter. At least one is required, maximum is 2.
EdgePath This property is required. string
Policy edge node path.
SourceAddress This property is required. string
IPv4 source address.
TunnelInterfaceSubnets This property is required. []PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnet
Interface Subnet object parameter. At least one is required, maximum is 2.
edgePath This property is required. String
Policy edge node path.
sourceAddress This property is required. String
IPv4 source address.
tunnelInterfaceSubnets This property is required. List<PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnet>
Interface Subnet object parameter. At least one is required, maximum is 2.
edgePath This property is required. string
Policy edge node path.
sourceAddress This property is required. string
IPv4 source address.
tunnelInterfaceSubnets This property is required. PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnet[]
Interface Subnet object parameter. At least one is required, maximum is 2.
edge_path This property is required. str
Policy edge node path.
source_address This property is required. str
IPv4 source address.
tunnel_interface_subnets This property is required. Sequence[PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnet]
Interface Subnet object parameter. At least one is required, maximum is 2.
edgePath This property is required. String
Policy edge node path.
sourceAddress This property is required. String
IPv4 source address.
tunnelInterfaceSubnets This property is required. List<Property Map>
Interface Subnet object parameter. At least one is required, maximum is 2.

PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnet
, PolicyTier0GatewayGreTunnelTunnelAddressTunnelInterfaceSubnetArgs

IpAddresses This property is required. List<string>
List of IP addresses assigned to interface.
PrefixLen This property is required. double
Subnet prefix length.
IpAddresses This property is required. []string
List of IP addresses assigned to interface.
PrefixLen This property is required. float64
Subnet prefix length.
ipAddresses This property is required. List<String>
List of IP addresses assigned to interface.
prefixLen This property is required. Double
Subnet prefix length.
ipAddresses This property is required. string[]
List of IP addresses assigned to interface.
prefixLen This property is required. number
Subnet prefix length.
ip_addresses This property is required. Sequence[str]
List of IP addresses assigned to interface.
prefix_len This property is required. float
Subnet prefix length.
ipAddresses This property is required. List<String>
List of IP addresses assigned to interface.
prefixLen This property is required. Number
Subnet prefix length.

PolicyTier0GatewayGreTunnelTunnelKeepalive
, PolicyTier0GatewayGreTunnelTunnelKeepaliveArgs

DeadTimeMultiplier double
Dead time multiplier. Default is 3.
EnableKeepaliveAck bool
Enable tunnel keep alive acknowledge. Default is true.
Enabled bool
Enable/Disable tunnel keep alive. Default is false.
KeepaliveInterval double
Keep alive interval. Default is 10.
DeadTimeMultiplier float64
Dead time multiplier. Default is 3.
EnableKeepaliveAck bool
Enable tunnel keep alive acknowledge. Default is true.
Enabled bool
Enable/Disable tunnel keep alive. Default is false.
KeepaliveInterval float64
Keep alive interval. Default is 10.
deadTimeMultiplier Double
Dead time multiplier. Default is 3.
enableKeepaliveAck Boolean
Enable tunnel keep alive acknowledge. Default is true.
enabled Boolean
Enable/Disable tunnel keep alive. Default is false.
keepaliveInterval Double
Keep alive interval. Default is 10.
deadTimeMultiplier number
Dead time multiplier. Default is 3.
enableKeepaliveAck boolean
Enable tunnel keep alive acknowledge. Default is true.
enabled boolean
Enable/Disable tunnel keep alive. Default is false.
keepaliveInterval number
Keep alive interval. Default is 10.
dead_time_multiplier float
Dead time multiplier. Default is 3.
enable_keepalive_ack bool
Enable tunnel keep alive acknowledge. Default is true.
enabled bool
Enable/Disable tunnel keep alive. Default is false.
keepalive_interval float
Keep alive interval. Default is 10.
deadTimeMultiplier Number
Dead time multiplier. Default is 3.
enableKeepaliveAck Boolean
Enable tunnel keep alive acknowledge. Default is true.
enabled Boolean
Enable/Disable tunnel keep alive. Default is false.
keepaliveInterval Number
Keep alive interval. Default is 10.

Package Details

Repository
nsxt vmware/terraform-provider-nsxt
License
Notes
This Pulumi package is based on the nsxt Terraform Provider.