Bagikan melalui


RecordSetsOperationsExtensions.Delete Method

Definition

Deletes a record set from a Private DNS zone. This operation cannot be undone.

public static void Delete (this Microsoft.Azure.Management.PrivateDns.IRecordSetsOperations operations, string resourceGroupName, string privateZoneName, Microsoft.Azure.Management.PrivateDns.Models.RecordType recordType, string relativeRecordSetName, string ifMatch = default);
static member Delete : Microsoft.Azure.Management.PrivateDns.IRecordSetsOperations * string * string * Microsoft.Azure.Management.PrivateDns.Models.RecordType * string * string -> unit
<Extension()>
Public Sub Delete (operations As IRecordSetsOperations, resourceGroupName As String, privateZoneName As String, recordType As RecordType, relativeRecordSetName As String, Optional ifMatch As String = Nothing)

Parameters

operations
IRecordSetsOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group.

privateZoneName
String

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

recordType
RecordType

The type of DNS record in this record set. Record sets of type SOA cannot be deleted (they are deleted when the Private DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT'

relativeRecordSetName
String

The name of the record set, relative to the name of the zone.

ifMatch
String

The ETag of the record set. Omit this value to always delete the current record set. Specify the last-seen ETag value to prevent accidentally deleting any concurrent changes.

Applies to