Interface AzureNodePoolAutoscalingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AzureNodePoolAutoscaling
,AzureNodePoolAutoscaling.Builder
public interface AzureNodePoolAutoscalingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMaxNodeCount()
Required.int
getMinNodeCount()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMinNodeCount
int getMinNodeCount()
Required. Minimum number of nodes in the node pool. Must be greater than or equal to 1 and less than or equal to max_node_count.
int32 min_node_count = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The minNodeCount.
-
getMaxNodeCount
int getMaxNodeCount()
Required. Maximum number of nodes in the node pool. Must be greater than or equal to min_node_count and less than or equal to 50.
int32 max_node_count = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The maxNodeCount.
-
-