Microsoft.Azure.Commands.Batch.ResetBatchComputeNodeCommand.ExecuteCmdlet C# (CSharp) Method

ExecuteCmdlet() public method

public ExecuteCmdlet ( ) : void
return void
        public override void ExecuteCmdlet()
        {
            ReimageComputeNodeParameters parameters = new ReimageComputeNodeParameters(this.BatchContext, this.PoolId,
                this.Id, this.ComputeNode, this.AdditionalBehaviors)
            {
                ReimageOption = this.ReimageOption
            };
            BatchClient.ReimageComputeNode(parameters);
        }
    }
ResetBatchComputeNodeCommand