Megosztás a következőn keresztül:


VirtualNetworkLinkCollection.CreateOrUpdate Method

Definition

Creates or updates a virtual network link to the specified Private DNS zone.

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

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.

virtualNetworkLinkName
String

The name of the virtual network link.

data
VirtualNetworkLinkData

Parameters supplied to the CreateOrUpdate operation.

ifMatch
Nullable<ETag>

The ETag of the virtual network link to the Private DNS zone. Omit this value to always overwrite the current virtual network link. Specify the last-seen ETag value to prevent accidentally overwriting any concurrent changes.

ifNoneMatch
String

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

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

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

virtualNetworkLinkName or data is null.

Applies to