Package | Description |
---|---|
com.microsoft.azure.batch |
This package contains classes for writing applications that use the Azure Batch service.
|
com.microsoft.azure.batch.protocol.models |
This package contains the models classes for BatchServiceClient.
|
Modifier and Type | Method and Description |
---|---|
void |
PoolOperations.removeNodeFromPool(String poolId,
String computeNodeId,
ComputeNodeDeallocationOption deallocationOption)
Removes the specified compute node from the specified pool.
|
void |
PoolOperations.removeNodeFromPool(String poolId,
String computeNodeId,
ComputeNodeDeallocationOption deallocationOption,
org.joda.time.Period resizeTimeout,
Iterable<BatchClientBehavior> additionalBehaviors)
Removes the specified compute node from the specified pool.
|
void |
PoolOperations.removeNodesFromPool(String poolId,
Collection<ComputeNode> computeNodes,
ComputeNodeDeallocationOption deallocationOption)
Removes the specified compute nodes from the specified pool.
|
void |
PoolOperations.removeNodesFromPool(String poolId,
Collection<ComputeNode> computeNodes,
ComputeNodeDeallocationOption deallocationOption,
org.joda.time.Period resizeTimeout,
Iterable<BatchClientBehavior> additionalBehaviors)
Removes the specified compute nodes from the specified pool.
|
void |
PoolOperations.removeNodesFromPool(String poolId,
List<String> computeNodeIds,
ComputeNodeDeallocationOption deallocationOption,
org.joda.time.Period resizeTimeout,
Iterable<BatchClientBehavior> additionalBehaviors)
Removes the specified compute nodes from the specified pool.
|
void |
PoolOperations.resizePool(String poolId,
Integer targetDedicatedNodes,
Integer targetLowPriorityNodes,
org.joda.time.Period resizeTimeout,
ComputeNodeDeallocationOption deallocationOption)
Resizes the specified pool.
|
void |
PoolOperations.resizePool(String poolId,
Integer targetDedicatedNodes,
Integer targetLowPriorityNodes,
org.joda.time.Period resizeTimeout,
ComputeNodeDeallocationOption deallocationOption,
Iterable<BatchClientBehavior> additionalBehaviors)
Resizes the specified pool.
|
Modifier and Type | Method and Description |
---|---|
static ComputeNodeDeallocationOption |
ComputeNodeDeallocationOption.fromString(String value)
Parses a serialized value to a ComputeNodeDeallocationOption instance.
|
ComputeNodeDeallocationOption |
PoolResizeParameter.nodeDeallocationOption()
Get the nodeDeallocationOption value.
|
ComputeNodeDeallocationOption |
NodeRemoveParameter.nodeDeallocationOption()
Get the nodeDeallocationOption value.
|
static ComputeNodeDeallocationOption |
ComputeNodeDeallocationOption.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputeNodeDeallocationOption[] |
ComputeNodeDeallocationOption.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
PoolResizeParameter |
PoolResizeParameter.withNodeDeallocationOption(ComputeNodeDeallocationOption nodeDeallocationOption)
Set the nodeDeallocationOption value.
|
NodeRemoveParameter |
NodeRemoveParameter.withNodeDeallocationOption(ComputeNodeDeallocationOption nodeDeallocationOption)
Set the nodeDeallocationOption value.
|
Copyright © 2019. All rights reserved.