Share via


IpAddress Constructors

Definition

Overloads

IpAddress()

Initializes a new instance of the IpAddress class.

IpAddress(IList<Port>, String, String, String, String, String)

Initializes a new instance of the IpAddress class.

IpAddress()

Initializes a new instance of the IpAddress class.

public IpAddress ();
Public Sub New ()

Applies to

IpAddress(IList<Port>, String, String, String, String, String)

Initializes a new instance of the IpAddress class.

public IpAddress (System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerInstance.Models.Port> ports, string type, string ip = default, string dnsNameLabel = default, string dnsNameLabelReusePolicy = default, string fqdn = default);
new Microsoft.Azure.Management.ContainerInstance.Models.IpAddress : System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerInstance.Models.Port> * string * string * string * string * string -> Microsoft.Azure.Management.ContainerInstance.Models.IpAddress
Public Sub New (ports As IList(Of Port), type As String, Optional ip As String = Nothing, Optional dnsNameLabel As String = Nothing, Optional dnsNameLabelReusePolicy As String = Nothing, Optional fqdn As String = Nothing)

Parameters

ports
IList<Port>

The list of ports exposed on the container group.

type
String

Specifies if the IP is exposed to the public internet or private VNET. Possible values include: 'Public', 'Private'

ip
String

The IP exposed to the public internet.

dnsNameLabel
String

The Dns name label for the IP.

dnsNameLabelReusePolicy
String

The value representing the security enum. Possible values include: 'Unsecure', 'TenantReuse', 'SubscriptionReuse', 'ResourceGroupReuse', 'Noreuse'

fqdn
String

The FQDN for the IP.

Applies to