IpAddress Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IpAddress() |
Initializes a new instance of the IpAddress class. |
IpAddress(IList<Port>, 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)
Initializes a new instance of the IpAddress class.
public IpAddress (System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerInstance.Fluent.Models.Port> ports, string type, string ip = default, string dnsNameLabel = default, string fqdn = default);
new Microsoft.Azure.Management.ContainerInstance.Fluent.Models.IpAddress : System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerInstance.Fluent.Models.Port> * string * string * string * string -> Microsoft.Azure.Management.ContainerInstance.Fluent.Models.IpAddress
Public Sub New (ports As IList(Of Port), type As String, Optional ip As String = Nothing, Optional dnsNameLabel As String = Nothing, Optional fqdn As String = Nothing)
Parameters
- 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.
- fqdn
- String
The FQDN for the IP.