Aracılığıyla paylaş


RecordSet Constructors

Definition

Overloads

RecordSet()

Initializes a new instance of the RecordSet class.

RecordSet(String, String, String, String, IDictionary<String, String>, Nullable<Int64>, String, Nullable<Boolean>, IList<ARecord>, IList<AaaaRecord>, CnameRecord, IList<MxRecord>, IList<PtrRecord>, SoaRecord, IList<SrvRecord>, IList<TxtRecord>)

Initializes a new instance of the RecordSet class.

RecordSet()

Initializes a new instance of the RecordSet class.

public RecordSet ();
Public Sub New ()

Applies to

RecordSet(String, String, String, String, IDictionary<String, String>, Nullable<Int64>, String, Nullable<Boolean>, IList<ARecord>, IList<AaaaRecord>, CnameRecord, IList<MxRecord>, IList<PtrRecord>, SoaRecord, IList<SrvRecord>, IList<TxtRecord>)

Initializes a new instance of the RecordSet class.

public RecordSet (string id = default, string name = default, string type = default, string etag = default, System.Collections.Generic.IDictionary<string,string> metadata = default, long? ttl = default, string fqdn = default, bool? isAutoRegistered = default, System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.ARecord> aRecords = default, System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.AaaaRecord> aaaaRecords = default, Microsoft.Azure.Management.PrivateDns.Models.CnameRecord cnameRecord = default, System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.MxRecord> mxRecords = default, System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.PtrRecord> ptrRecords = default, Microsoft.Azure.Management.PrivateDns.Models.SoaRecord soaRecord = default, System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.SrvRecord> srvRecords = default, System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.TxtRecord> txtRecords = default);
new Microsoft.Azure.Management.PrivateDns.Models.RecordSet : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Nullable<int64> * string * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.ARecord> * System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.AaaaRecord> * Microsoft.Azure.Management.PrivateDns.Models.CnameRecord * System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.MxRecord> * System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.PtrRecord> * Microsoft.Azure.Management.PrivateDns.Models.SoaRecord * System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.SrvRecord> * System.Collections.Generic.IList<Microsoft.Azure.Management.PrivateDns.Models.TxtRecord> -> Microsoft.Azure.Management.PrivateDns.Models.RecordSet
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional etag As String = Nothing, Optional metadata As IDictionary(Of String, String) = Nothing, Optional ttl As Nullable(Of Long) = Nothing, Optional fqdn As String = Nothing, Optional isAutoRegistered As Nullable(Of Boolean) = Nothing, Optional aRecords As IList(Of ARecord) = Nothing, Optional aaaaRecords As IList(Of AaaaRecord) = Nothing, Optional cnameRecord As CnameRecord = Nothing, Optional mxRecords As IList(Of MxRecord) = Nothing, Optional ptrRecords As IList(Of PtrRecord) = Nothing, Optional soaRecord As SoaRecord = Nothing, Optional srvRecords As IList(Of SrvRecord) = Nothing, Optional txtRecords As IList(Of TxtRecord) = Nothing)

Parameters

id
String

Fully qualified resource Id for the resource. Example - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateDnsZoneName}'.

name
String

The name of the resource

type
String

The type of the resource. Example - 'Microsoft.Network/privateDnsZones'.

etag
String

The ETag of the record set.

metadata
IDictionary<String,String>

The metadata attached to the record set.

ttl
Nullable<Int64>

The TTL (time-to-live) of the records in the record set.

fqdn
String

Fully qualified domain name of the record set.

isAutoRegistered
Nullable<Boolean>

Is the record set auto-registered in the Private DNS zone through a virtual network link?

aRecords
IList<ARecord>

The list of A records in the record set.

aaaaRecords
IList<AaaaRecord>

The list of AAAA records in the record set.

cnameRecord
CnameRecord

The CNAME record in the record set.

mxRecords
IList<MxRecord>

The list of MX records in the record set.

ptrRecords
IList<PtrRecord>

The list of PTR records in the record set.

soaRecord
SoaRecord

The SOA record in the record set.

srvRecords
IList<SrvRecord>

The list of SRV records in the record set.

txtRecords
IList<TxtRecord>

The list of TXT records in the record set.

Applies to