/// <summary>
 /// Patch an existing Kubernetes Cluster Extension.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='clusterRp'>
 /// The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS
 /// clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters). Possible
 /// values include: 'Microsoft.ContainerService', 'Microsoft.Kubernetes'
 /// </param>
 /// <param name='clusterResourceName'>
 /// The Kubernetes cluster resource name - either managedClusters (for AKS
 /// clusters) or connectedClusters (for OnPrem K8S clusters). Possible values
 /// include: 'managedClusters', 'connectedClusters'
 /// </param>
 /// <param name='clusterName'>
 /// The name of the kubernetes cluster.
 /// </param>
 /// <param name='extensionName'>
 /// Name of the Extension.
 /// </param>
 /// <param name='patchExtension'>
 /// Properties to Patch in an existing Extension.
 /// </param>
 public static Extension BeginUpdate(this IExtensionsOperations operations, string resourceGroupName, string clusterRp, string clusterResourceName, string clusterName, string extensionName, PatchExtension patchExtension)
 {
     return(operations.BeginUpdateAsync(resourceGroupName, clusterRp, clusterResourceName, clusterName, extensionName, patchExtension).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Update Extension for HCI cluster.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='clusterName'>
 /// The name of the cluster.
 /// </param>
 /// <param name='arcSettingName'>
 /// The name of the proxy resource holding details of HCI ArcSetting
 /// information.
 /// </param>
 /// <param name='extensionName'>
 /// The name of the machine extension.
 /// </param>
 /// <param name='extension'>
 /// Details of the Machine Extension to be created.
 /// </param>
 public static Extension BeginUpdate(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string arcSettingName, string extensionName, Extension extension)
 {
     return(operations.BeginUpdateAsync(resourceGroupName, clusterName, arcSettingName, extensionName, extension).GetAwaiter().GetResult());
 }