/// <summary>
 /// Updates the cluster identity certificate.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='clusterName'>
 /// The name of the cluster.
 /// </param>
 /// <param name='parameters'>
 /// The cluster configurations.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task BeginUpdateIdentityCertificateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.BeginUpdateIdentityCertificateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
 /// <summary>
 /// Updates the cluster identity certificate.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='clusterName'>
 /// The name of the cluster.
 /// </param>
 /// <param name='parameters'>
 /// The cluster configurations.
 /// </param>
 public static void BeginUpdateIdentityCertificate(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters)
 {
     operations.BeginUpdateIdentityCertificateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult();
 }