/// <summary>
 /// Power off (stop) one or more virtual machines in a VM scale set. Note that
 /// resources are still attached and you are getting charged for the resources.
 /// Instead, use deallocate to release resources and avoid charges.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='vmScaleSetName'>
 /// The name of the VM scale set.
 /// </param>
 /// <param name='instanceIds'>
 /// The virtual machine scale set instance ids. Omitting the virtual machine
 /// scale set instance ids will result in the operation being performed on all
 /// virtual machines in the virtual machine scale set.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <OperationStatusResponseInner> BeginPowerOffAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList <string> instanceIds = default(IList <string>), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Power off (stop) one or more virtual machines in a VM scale set. Note that
 /// resources are still attached and you are getting charged for the resources.
 /// Instead, use deallocate to release resources and avoid charges.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='vmScaleSetName'>
 /// The name of the VM scale set.
 /// </param>
 /// <param name='instanceIds'>
 /// The virtual machine scale set instance ids. Omitting the virtual machine
 /// scale set instance ids will result in the operation being performed on all
 /// virtual machines in the virtual machine scale set.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task BeginPowerOffAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList <string> instanceIds = default(IList <string>), CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }