Show / Hide Table of Contents

Class NetworkInterfaceIpConfigurationGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NetworkInterfaceIpConfigurationGetArgs
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.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class NetworkInterfaceIpConfigurationGetArgs : ResourceArgs

Constructors

View Source

NetworkInterfaceIpConfigurationGetArgs()

Declaration
public NetworkInterfaceIpConfigurationGetArgs()

Properties

View Source

Name

A name used for this IP Configuration.

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

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>
View Source

PrivateIpAddress

The Static IP Address which should be used.

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

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>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.