Microsoft.Azure.Commands.Batch.Models.RemoveComputeNodeParameters.RemoveComputeNodeParameters C# (CSharp) Method

RemoveComputeNodeParameters() public method

public RemoveComputeNodeParameters ( BatchAccountContext context, string poolId, string computeNodeIds, PSComputeNode computeNode, IEnumerable additionalBehaviors = null ) : Microsoft.Azure.Batch
context BatchAccountContext
poolId string
computeNodeIds string
computeNode PSComputeNode
additionalBehaviors IEnumerable
return Microsoft.Azure.Batch
        public RemoveComputeNodeParameters(BatchAccountContext context, string poolId, string[] computeNodeIds, PSComputeNode computeNode,
            IEnumerable<BatchClientBehavior> additionalBehaviors = null) : base(context, additionalBehaviors)
        {
            if ((string.IsNullOrWhiteSpace(poolId) || computeNodeIds == null) && computeNode == null)
            {
                throw new ArgumentNullException(Resources.NoComputeNode);
            }

            this.PoolId = poolId;
            this.ComputeNodeIds = computeNodeIds;
            this.ComputeNode = computeNode;
        }
RemoveComputeNodeParameters