Share via


DnsPtrRecordCollection.CreateOrUpdate Method

Definition

Creates or updates a record set within a DNS zone.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType}/{ptrRecordName}
  • Operation Id: RecordSets_CreateOrUpdate
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsPtrRecordResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string ptrRecordName, Azure.ResourceManager.Dns.DnsPtrRecordData data, Azure.ETag? ifMatch = default, string ifNoneMatch = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Dns.DnsPtrRecordData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsPtrRecordResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Dns.DnsPtrRecordData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsPtrRecordResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, ptrRecordName As String, data As DnsPtrRecordData, Optional ifMatch As Nullable(Of ETag) = Nothing, Optional ifNoneMatch As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As ArmOperation(Of DnsPtrRecordResource)

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

ptrRecordName
String

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

data
DnsPtrRecordData

Parameters supplied to the CreateOrUpdate operation.

ifMatch
Nullable<ETag>

The etag of the record set. Omit this value to always overwrite the current record set. Specify the last-seen etag value to prevent accidentally overwriting any concurrent changes.

ifNoneMatch
String

Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will be ignored.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

ptrRecordName or data is null.

Applies to