DnsSoaRecordCollection.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}/{soaRecordName}
  • Operation Id: RecordSets_CreateOrUpdate
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsSoaRecordResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string soaRecordName, Azure.ResourceManager.Dns.DnsSoaRecordData data, Azure.ETag? ifMatch = default, string ifNoneMatch = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Dns.DnsSoaRecordData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsSoaRecordResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Dns.DnsSoaRecordData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsSoaRecordResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, soaRecordName As String, data As DnsSoaRecordData, Optional ifMatch As Nullable(Of ETag) = Nothing, Optional ifNoneMatch As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As ArmOperation(Of DnsSoaRecordResource)

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.

soaRecordName
String

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

data
DnsSoaRecordData

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

soaRecordName or data is null.

Applies to