Share via


CloudServiceCollection.CreateOrUpdate Method

Definition

Create or update a cloud service. Please note some properties can be set only during cloud service creation.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}
  • Operation Id: CloudServices_CreateOrUpdate
  • Default Api Version: 2022-09-04
  • Resource: CloudServiceResource
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Compute.CloudServiceResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string cloudServiceName, Azure.ResourceManager.Compute.CloudServiceData data, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Compute.CloudServiceData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Compute.CloudServiceResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Compute.CloudServiceData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Compute.CloudServiceResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, cloudServiceName As String, data As CloudServiceData, Optional cancellationToken As CancellationToken = Nothing) As ArmOperation(Of CloudServiceResource)

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.

cloudServiceName
String

Name of the cloud service.

data
CloudServiceData

The cloud service object.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

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

cloudServiceName or data is null.

Applies to