次の方法で共有


Zone コンストラクター

定義

オーバーロード

Zone()

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

Zone(String, String, String, String, IDictionary<String,String>, String, Nullable<Int64>, Nullable<Int64>, IList<String>, Nullable<ZoneType>, IList<SubResource>, IList<SubResource>)

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

Zone()

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

public Zone ();
Public Sub New ()

適用対象

Zone(String, String, String, String, IDictionary<String,String>, String, Nullable<Int64>, Nullable<Int64>, IList<String>, Nullable<ZoneType>, IList<SubResource>, IList<SubResource>)

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

public Zone (string location, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, string etag = default, long? maxNumberOfRecordSets = default, long? numberOfRecordSets = default, System.Collections.Generic.IList<string> nameServers = default, Microsoft.Azure.Management.Dns.Models.ZoneType? zoneType = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Dns.Models.SubResource> registrationVirtualNetworks = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Dns.Models.SubResource> resolutionVirtualNetworks = default);
new Microsoft.Azure.Management.Dns.Models.Zone : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * Nullable<int64> * Nullable<int64> * System.Collections.Generic.IList<string> * Nullable<Microsoft.Azure.Management.Dns.Models.ZoneType> * System.Collections.Generic.IList<Microsoft.Azure.Management.Dns.Models.SubResource> * System.Collections.Generic.IList<Microsoft.Azure.Management.Dns.Models.SubResource> -> Microsoft.Azure.Management.Dns.Models.Zone
Public Sub New (location As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional etag As String = Nothing, Optional maxNumberOfRecordSets As Nullable(Of Long) = Nothing, Optional numberOfRecordSets As Nullable(Of Long) = Nothing, Optional nameServers As IList(Of String) = Nothing, Optional zoneType As Nullable(Of ZoneType) = Nothing, Optional registrationVirtualNetworks As IList(Of SubResource) = Nothing, Optional resolutionVirtualNetworks As IList(Of SubResource) = Nothing)

パラメーター

location
String

リソースの場所。

id
String

リソースの ID

name
String

リソース名。

type
String

リソースの種類。

tags
IDictionary<String,String>

リソース タグ。

etag
String

ゾーンの etag。

maxNumberOfRecordSets
Nullable<Int64>

この DNS ゾーンに作成できるレコード セットの最大数。 これは読み取り専用プロパティであり、この値を設定しようとすると無視されます。

numberOfRecordSets
Nullable<Int64>

この DNS ゾーン内のレコード セットの現在の数。 これは読み取り専用プロパティであり、この値を設定しようとすると無視されます。

nameServers
IList<String>

この DNS ゾーンのネーム サーバー。 これは読み取り専用プロパティであり、この値を設定しようとすると無視されます。

zoneType
Nullable<ZoneType>

この DNS ゾーンの種類 (パブリックまたはプライベート)。 使用可能な値は次のとおりです: 'Public'、'Private'

registrationVirtualNetworks
IList<SubResource>

この DNS ゾーンにホスト名を登録する仮想ネットワークへの参照の一覧。 これは、ZoneType が Private の場合にのみです。

resolutionVirtualNetworks
IList<SubResource>

この DNS ゾーン内のレコードを解決する仮想ネットワークへの参照の一覧。 これは、ZoneType が Private の場合にのみです。

適用対象