Share via


DnsZoneCollection.CreateOrUpdate Method

Definition

Creates or updates a DNS zone. Does not modify DNS records within the zone.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}
  • Operation Id: Zones_CreateOrUpdate
  • Default Api Version: 2023-07-01-preview
  • Resource: DnsZoneResource
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsZoneResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string zoneName, Azure.ResourceManager.Dns.DnsZoneData data, Azure.ETag? ifMatch = default, string ifNoneMatch = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Dns.DnsZoneData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsZoneResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Dns.DnsZoneData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Dns.DnsZoneResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, zoneName As String, data As DnsZoneData, Optional ifMatch As Nullable(Of ETag) = Nothing, Optional ifNoneMatch As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As ArmOperation(Of DnsZoneResource)

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.

zoneName
String

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

data
DnsZoneData

Parameters supplied to the CreateOrUpdate operation.

ifMatch
Nullable<ETag>

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

ifNoneMatch
String

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

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

zoneName is an empty string, and was expected to be non-empty.

zoneName or data is null.

Applies to