共用方式為


PrivateDnsZoneCollection.CreateOrUpdateAsync Method

Definition

Creates or updates a Private DNS zone. Does not modify Links to virtual networks or DNS records within the zone.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}
  • Operation Id: PrivateZones_CreateOrUpdate
  • Default Api Version: 2020-06-01
  • Resource: PrivateDnsZoneResource
public virtual System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.PrivateDns.PrivateDnsZoneResource>> CreateOrUpdateAsync (Azure.WaitUntil waitUntil, string privateZoneName, Azure.ResourceManager.PrivateDns.PrivateDnsZoneData data, Azure.ETag? ifMatch = default, string ifNoneMatch = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.PrivateDns.PrivateDnsZoneData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.PrivateDns.PrivateDnsZoneResource>>
override this.CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.PrivateDns.PrivateDnsZoneData * Nullable<Azure.ETag> * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.PrivateDns.PrivateDnsZoneResource>>
Public Overridable Function CreateOrUpdateAsync (waitUntil As WaitUntil, privateZoneName As String, data As PrivateDnsZoneData, Optional ifMatch As Nullable(Of ETag) = Nothing, Optional ifNoneMatch As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ArmOperation(Of PrivateDnsZoneResource))

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.

privateZoneName
String

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

data
PrivateDnsZoneData

Parameters supplied to the CreateOrUpdate operation.

ifMatch
Nullable<ETag>

The ETag of the Private 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 Private 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

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

privateZoneName or data is null.

Applies to