Megosztás a következőn keresztül:


DnsZoneResource.GetAllRecordData Method

Definition

Lists all record sets in a DNS zone.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/recordsets
  • Operation Id: RecordSets_ListByDnsZone
public virtual Azure.Pageable<Azure.ResourceManager.Dns.DnsRecordData> GetAllRecordData (int? top = default, string recordsetnamesuffix = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllRecordData : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Dns.DnsRecordData>
override this.GetAllRecordData : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Dns.DnsRecordData>
Public Overridable Function GetAllRecordData (Optional top As Nullable(Of Integer) = Nothing, Optional recordsetnamesuffix As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of DnsRecordData)

Parameters

top
Nullable<Int32>

The maximum number of record sets to return. If not specified, returns up to 100 record sets.

recordsetnamesuffix
String

The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix>.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of DnsRecordData that may take multiple service requests to iterate over.

Applies to