ClustersOperationsExtensions.BeginUpdateAsync Method

Definition

Updates an existing cluster. This can be used to partially update (ie. update one or two properties) a cluster without affecting the rest of the cluster definition.

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.StreamAnalytics.Models.Cluster> BeginUpdateAsync (this Microsoft.Azure.Management.StreamAnalytics.IClustersOperations operations, Microsoft.Azure.Management.StreamAnalytics.Models.Cluster cluster, string resourceGroupName, string clusterName, string ifMatch = default, System.Threading.CancellationToken cancellationToken = default);
static member BeginUpdateAsync : Microsoft.Azure.Management.StreamAnalytics.IClustersOperations * Microsoft.Azure.Management.StreamAnalytics.Models.Cluster * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.StreamAnalytics.Models.Cluster>
<Extension()>
Public Function BeginUpdateAsync (operations As IClustersOperations, cluster As Cluster, resourceGroupName As String, clusterName As String, Optional ifMatch As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Cluster)

Parameters

operations
IClustersOperations

The operations group for this extension method.

cluster
Cluster

The properties specified here will overwrite the corresponding properties in the existing cluster (ie. Those properties will be updated).

resourceGroupName
String

The name of the resource group. The name is case insensitive.

clusterName
String

The name of the cluster.

ifMatch
String

The ETag of the resource. Omit this value to always overwrite the current record set. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to