- 2.56.0 (latest)
- 2.55.0
- 2.54.0
- 2.52.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.40.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.27.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.2
- 2.4.1
- 2.3.8
public final class NodePoolAutoscaling extends GeneratedMessageV3 implements NodePoolAutoscalingOrBuilder
NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage.
Protobuf type google.container.v1.NodePoolAutoscaling
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > NodePoolAutoscalingImplements
NodePoolAutoscalingOrBuilderStatic Fields
AUTOPROVISIONED_FIELD_NUMBER
public static final int AUTOPROVISIONED_FIELD_NUMBER
Type | Description |
int |
ENABLED_FIELD_NUMBER
public static final int ENABLED_FIELD_NUMBER
Type | Description |
int |
MAX_NODE_COUNT_FIELD_NUMBER
public static final int MAX_NODE_COUNT_FIELD_NUMBER
Type | Description |
int |
MIN_NODE_COUNT_FIELD_NUMBER
public static final int MIN_NODE_COUNT_FIELD_NUMBER
Type | Description |
int |
Static Methods
getDefaultInstance()
public static NodePoolAutoscaling getDefaultInstance()
Type | Description |
NodePoolAutoscaling |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Type | Description |
Descriptor |
newBuilder()
public static NodePoolAutoscaling.Builder newBuilder()
Type | Description |
NodePoolAutoscaling.Builder |
newBuilder(NodePoolAutoscaling prototype)
public static NodePoolAutoscaling.Builder newBuilder(NodePoolAutoscaling prototype)
Name | Description |
prototype | NodePoolAutoscaling |
Type | Description |
NodePoolAutoscaling.Builder |
parseDelimitedFrom(InputStream input)
public static NodePoolAutoscaling parseDelimitedFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
NodePoolAutoscaling |
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static NodePoolAutoscaling parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
NodePoolAutoscaling |
Type | Description |
IOException |
parseFrom(byte[] data)
public static NodePoolAutoscaling parseFrom(byte[] data)
Name | Description |
data | byte[] |
Type | Description |
NodePoolAutoscaling |
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static NodePoolAutoscaling parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | byte[] |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
NodePoolAutoscaling |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static NodePoolAutoscaling parseFrom(ByteString data)
Name | Description |
data | ByteString |
Type | Description |
NodePoolAutoscaling |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static NodePoolAutoscaling parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteString |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
NodePoolAutoscaling |
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static NodePoolAutoscaling parseFrom(CodedInputStream input)
Name | Description |
input | CodedInputStream |
Type | Description |
NodePoolAutoscaling |
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static NodePoolAutoscaling parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
NodePoolAutoscaling |
Type | Description |
IOException |
parseFrom(InputStream input)
public static NodePoolAutoscaling parseFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
NodePoolAutoscaling |
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static NodePoolAutoscaling parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
NodePoolAutoscaling |
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static NodePoolAutoscaling parseFrom(ByteBuffer data)
Name | Description |
data | ByteBuffer |
Type | Description |
NodePoolAutoscaling |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static NodePoolAutoscaling parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteBuffer |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
NodePoolAutoscaling |
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<NodePoolAutoscaling> parser()
Type | Description |
Parser<NodePoolAutoscaling> |
Methods
equals(Object obj)
public boolean equals(Object obj)
Name | Description |
obj | Object |
Type | Description |
boolean |
getAutoprovisioned()
public boolean getAutoprovisioned()
Can this node pool be deleted automatically.
bool autoprovisioned = 4;
Type | Description |
boolean | The autoprovisioned. |
getDefaultInstanceForType()
public NodePoolAutoscaling getDefaultInstanceForType()
Type | Description |
NodePoolAutoscaling |
getEnabled()
public boolean getEnabled()
Is autoscaling enabled for this node pool.
bool enabled = 1;
Type | Description |
boolean | The enabled. |
getMaxNodeCount()
public int getMaxNodeCount()
Maximum number of nodes for one location in the NodePool. Must be >= min_node_count. There has to be enough quota to scale up the cluster.
int32 max_node_count = 3;
Type | Description |
int | The maxNodeCount. |
getMinNodeCount()
public int getMinNodeCount()
Minimum number of nodes for one location in the NodePool. Must be >= 1 and <= max_node_count.
int32 min_node_count = 2;
Type | Description |
int | The minNodeCount. |
getParserForType()
public Parser<NodePoolAutoscaling> getParserForType()
Type | Description |
Parser<NodePoolAutoscaling> |
getSerializedSize()
public int getSerializedSize()
Type | Description |
int |
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Type | Description |
UnknownFieldSet |
hashCode()
public int hashCode()
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Type | Description |
boolean |
newBuilderForType()
public NodePoolAutoscaling.Builder newBuilderForType()
Type | Description |
NodePoolAutoscaling.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected NodePoolAutoscaling.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Name | Description |
parent | BuilderParent |
Type | Description |
NodePoolAutoscaling.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Name | Description |
unused | UnusedPrivateParameter |
Type | Description |
Object |
toBuilder()
public NodePoolAutoscaling.Builder toBuilder()
Type | Description |
NodePoolAutoscaling.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Name | Description |
output | CodedOutputStream |
Type | Description |
IOException |