Udostępnij za pośrednictwem


PrivateDnsZoneResource.GetRecords Method

Definition

Lists all record sets in a Private DNS zone.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/ALL
  • Operation Id: RecordSets_List
public virtual Azure.Pageable<Azure.ResourceManager.PrivateDns.PrivateDnsRecordData> GetRecords (int? top = default, string recordsetnamesuffix = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetRecords : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.PrivateDns.PrivateDnsRecordData>
override this.GetRecords : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.PrivateDns.PrivateDnsRecordData>
Public Overridable Function GetRecords (Optional top As Nullable(Of Integer) = Nothing, Optional recordsetnamesuffix As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of PrivateDnsRecordData)

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 to be used to filter the record set enumeration. If this parameter is specified, the returned enumeration will only contain records that end with ".<recordsetnamesuffix>".

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to