Bagikan melalui


RecordSetsOperationsExtensions.ListByTypeAsync Method

Definition

Lists the record sets of a specified type in a DNS zone.

public static System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Dns.Fluent.Models.RecordSetInner>> ListByTypeAsync (this Microsoft.Azure.Management.Dns.Fluent.IRecordSetsOperations operations, string resourceGroupName, string zoneName, Microsoft.Azure.Management.Dns.Fluent.Models.RecordType recordType, int? top = default, string recordsetnamesuffix = default, System.Threading.CancellationToken cancellationToken = default);
static member ListByTypeAsync : Microsoft.Azure.Management.Dns.Fluent.IRecordSetsOperations * string * string * Microsoft.Azure.Management.Dns.Fluent.Models.RecordType * Nullable<int> * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Dns.Fluent.Models.RecordSetInner>>
<Extension()>
Public Function ListByTypeAsync (operations As IRecordSetsOperations, resourceGroupName As String, zoneName As String, recordType As RecordType, Optional top As Nullable(Of Integer) = Nothing, Optional recordsetnamesuffix As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IPage(Of RecordSetInner))

Parameters

operations
IRecordSetsOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group.

zoneName
String

The name of the DNS zone (without a terminating dot).

recordType
RecordType

The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT'

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.

Returns

Applies to