public final class ResizeNodeGroupRequest extends GeneratedMessageV3 implements ResizeNodeGroupRequestOrBuilder
A request to resize a node group.
Protobuf type google.cloud.dataproc.v1.ResizeNodeGroupRequest
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
GRACEFUL_DECOMMISSION_TIMEOUT_FIELD_NUMBER
public static final int GRACEFUL_DECOMMISSION_TIMEOUT_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
NAME_FIELD_NUMBER
public static final int NAME_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
REQUEST_ID_FIELD_NUMBER
public static final int REQUEST_ID_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
SIZE_FIELD_NUMBER
public static final int SIZE_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
Static Methods
getDefaultInstance()
public static ResizeNodeGroupRequest getDefaultInstance()
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
newBuilder()
public static ResizeNodeGroupRequest.Builder newBuilder()
newBuilder(ResizeNodeGroupRequest prototype)
public static ResizeNodeGroupRequest.Builder newBuilder(ResizeNodeGroupRequest prototype)
public static ResizeNodeGroupRequest parseDelimitedFrom(InputStream input)
public static ResizeNodeGroupRequest parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
parseFrom(byte[] data)
public static ResizeNodeGroupRequest parseFrom(byte[] data)
Parameter |
Name |
Description |
data |
byte[]
|
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static ResizeNodeGroupRequest parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
parseFrom(ByteString data)
public static ResizeNodeGroupRequest parseFrom(ByteString data)
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static ResizeNodeGroupRequest parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static ResizeNodeGroupRequest parseFrom(CodedInputStream input)
public static ResizeNodeGroupRequest parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static ResizeNodeGroupRequest parseFrom(InputStream input)
public static ResizeNodeGroupRequest parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
parseFrom(ByteBuffer data)
public static ResizeNodeGroupRequest parseFrom(ByteBuffer data)
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static ResizeNodeGroupRequest parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
parser()
public static Parser<ResizeNodeGroupRequest> parser()
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter |
Name |
Description |
obj |
Object
|
Overrides
getDefaultInstanceForType()
public ResizeNodeGroupRequest getDefaultInstanceForType()
getGracefulDecommissionTimeout()
public Duration getGracefulDecommissionTimeout()
Optional. Timeout for graceful YARN decommissioning. Graceful
decommissioning
allows the removal of nodes from the Compute Engine node group
without interrupting jobs in progress. This timeout specifies how long to
wait for jobs in progress to finish before forcefully removing nodes (and
potentially interrupting jobs). Default timeout is 0 (for forceful
decommission), and the maximum allowed timeout is 1 day. (see JSON
representation of
Duration).
Only supported on Dataproc image versions 1.2 and higher.
.google.protobuf.Duration graceful_decommission_timeout = 4 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
Duration |
The gracefulDecommissionTimeout.
|
getGracefulDecommissionTimeoutOrBuilder()
public DurationOrBuilder getGracefulDecommissionTimeoutOrBuilder()
Optional. Timeout for graceful YARN decommissioning. Graceful
decommissioning
allows the removal of nodes from the Compute Engine node group
without interrupting jobs in progress. This timeout specifies how long to
wait for jobs in progress to finish before forcefully removing nodes (and
potentially interrupting jobs). Default timeout is 0 (for forceful
decommission), and the maximum allowed timeout is 1 day. (see JSON
representation of
Duration).
Only supported on Dataproc image versions 1.2 and higher.
.google.protobuf.Duration graceful_decommission_timeout = 4 [(.google.api.field_behavior) = OPTIONAL];
getName()
Required. The name of the node group to resize.
Format:
projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}
string name = 1 [(.google.api.field_behavior) = REQUIRED];
Returns |
Type |
Description |
String |
The name.
|
getNameBytes()
public ByteString getNameBytes()
Required. The name of the node group to resize.
Format:
projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}
string name = 1 [(.google.api.field_behavior) = REQUIRED];
Returns |
Type |
Description |
ByteString |
The bytes for name.
|
getParserForType()
public Parser<ResizeNodeGroupRequest> getParserForType()
Overrides
getRequestId()
public String getRequestId()
Optional. A unique ID used to identify the request. If the server receives
two
ResizeNodeGroupRequest
with the same ID, the second request is ignored and the
first google.longrunning.Operation created
and stored in the backend is returned.
Recommendation: Set this value to a
UUID.
The ID must contain only letters (a-z, A-Z), numbers (0-9),
underscores (_), and hyphens (-). The maximum length is 40 characters.
string request_id = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
String |
The requestId.
|
getRequestIdBytes()
public ByteString getRequestIdBytes()
Optional. A unique ID used to identify the request. If the server receives
two
ResizeNodeGroupRequest
with the same ID, the second request is ignored and the
first google.longrunning.Operation created
and stored in the backend is returned.
Recommendation: Set this value to a
UUID.
The ID must contain only letters (a-z, A-Z), numbers (0-9),
underscores (_), and hyphens (-). The maximum length is 40 characters.
string request_id = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
ByteString |
The bytes for requestId.
|
getSerializedSize()
public int getSerializedSize()
Returns |
Type |
Description |
int |
|
Overrides
getSize()
Required. The number of running instances for the node group to maintain.
The group adds or removes instances to maintain the number of instances
specified by this parameter.
int32 size = 2 [(.google.api.field_behavior) = REQUIRED];
Returns |
Type |
Description |
int |
The size.
|
hasGracefulDecommissionTimeout()
public boolean hasGracefulDecommissionTimeout()
Optional. Timeout for graceful YARN decommissioning. Graceful
decommissioning
allows the removal of nodes from the Compute Engine node group
without interrupting jobs in progress. This timeout specifies how long to
wait for jobs in progress to finish before forcefully removing nodes (and
potentially interrupting jobs). Default timeout is 0 (for forceful
decommission), and the maximum allowed timeout is 1 day. (see JSON
representation of
Duration).
Only supported on Dataproc image versions 1.2 and higher.
.google.protobuf.Duration graceful_decommission_timeout = 4 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
boolean |
Whether the gracefulDecommissionTimeout field is set.
|
hashCode()
Returns |
Type |
Description |
int |
|
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Overrides
isInitialized()
public final boolean isInitialized()
Overrides
newBuilderForType()
public ResizeNodeGroupRequest.Builder newBuilderForType()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected ResizeNodeGroupRequest.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Returns |
Type |
Description |
Object |
|
Overrides
toBuilder()
public ResizeNodeGroupRequest.Builder toBuilder()
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Overrides