次の方法で共有


IpAddress コンストラクター

定義

オーバーロード

IpAddress()

IpAddress クラスの新しいインスタンスを初期化します。

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

IpAddress クラスの新しいインスタンスを初期化します。

IpAddress()

IpAddress クラスの新しいインスタンスを初期化します。

public IpAddress ();
Public Sub New ()

適用対象

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

IpAddress クラスの新しいインスタンスを初期化します。

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)

パラメーター

ports
IList<Port>

コンテナー グループで公開されているポートのリスト。

type
String

IP がパブリック インターネットまたはプライベート VNET に公開されているかどうかを指定します。 使用可能な値は次のとおりです: 'Public'、'Private'

ip
String

パブリック インターネットに公開されている IP。

dnsNameLabel
String

IP の DNS 名ラベル。

fqdn
String

IP の FQDN。

適用対象