Class NetworkInterfaceIpConfigurationArgs
Inherited Members
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.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class NetworkInterfaceIpConfigurationArgs : ResourceArgs
Constructors
View SourceNetworkInterfaceIpConfigurationArgs()
Declaration
public NetworkInterfaceIpConfigurationArgs()
Properties
View SourceName
A name used for this IP Configuration.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Primary
Is this the Primary IP Configuration? Must be true for the first ip_configuration when multiple are specified. Defaults to false.
Declaration
public Input<bool> Primary { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
PrivateIpAddress
The Static IP Address which should be used.
Declaration
public Input<string> PrivateIpAddress { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PrivateIpAddressAllocation
The allocation method used for the Private IP Address. Possible values are Dynamic and Static.
Declaration
public Input<string> PrivateIpAddressAllocation { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PrivateIpAddressVersion
The IP Version to use. Possible values are IPv4 or IPv6. Defaults to IPv4.
Declaration
public Input<string> PrivateIpAddressVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PublicIpAddressId
Reference to a Public IP Address to associate with this NIC
Declaration
public Input<string> PublicIpAddressId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SubnetId
The ID of the Subnet where this Network Interface should be located in.
Declaration
public Input<string> SubnetId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |