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

ExecuteCmdlet() public method

public ExecuteCmdlet ( ) : void
return void
        public override void ExecuteCmdlet()
        {
            UpdateComputeNodeUserParameters parameters = new UpdateComputeNodeUserParameters(this.BatchContext,
                this.PoolId, this.ComputeNodeId, this.Name, this.AdditionalBehaviors)
            {
                Password = this.Password,
                ExpiryTime = this.ExpiryTime
            };
            this.BatchClient.UpdateComputeNodeUser(parameters);
        }
    }
SetBatchComputeNodeUserCommand