Show / Hide Table of Contents

Class NatGatewayArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NatGatewayArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Network
Assembly: Pulumi.Azure.dll
Syntax
public sealed class NatGatewayArgs : ResourceArgs

Constructors

View Source

NatGatewayArgs()

Declaration
public NatGatewayArgs()

Properties

View Source

IdleTimeoutInMinutes

The idle timeout which should be used in minutes. Defaults to 4.

Declaration
public Input<int> IdleTimeoutInMinutes { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Location

Specifies the supported Azure location where the NAT Gateway should exist. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the NAT Gateway. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PublicIpAddressIds

A list of Public IP Address ID's which should be associated with the NAT Gateway resource.

Declaration
[Obsolete("Inline Public IP Address ID Deprecations have been deprecated in favour of the `azurerm_nat_gateway_public_ip_association` resource. This field will be removed in the next major version of the Azure Provider.")]
public InputList<string> PublicIpAddressIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

PublicIpPrefixIds

A list of Public IP Prefix ID's which should be associated with the NAT Gateway resource.

Declaration
public InputList<string> PublicIpPrefixIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

ResourceGroupName

Specifies the name of the Resource Group in which the NAT Gateway should exist. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SkuName

The SKU which should be used. At this time the only supported value is Standard. Defaults to Standard.

Declaration
public Input<string> SkuName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags to assign to the resource. Changing this forces a new resource to be created.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Zones

A list of availability zones where the NAT Gateway should be provisioned. Changing this forces a new resource to be created.

Declaration
public InputList<string> Zones { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.