Package com.google.cloud.dataplex.v1
Interface Environment.InfrastructureSpec.ComputeResourcesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Environment.InfrastructureSpec.ComputeResources
,Environment.InfrastructureSpec.ComputeResources.Builder
- Enclosing class:
- Environment.InfrastructureSpec
public static interface Environment.InfrastructureSpec.ComputeResourcesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDiskSizeGb()
Optional.int
getMaxNodeCount()
Optional.int
getNodeCount()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDiskSizeGb
int getDiskSizeGb()
Optional. Size in GB of the disk. Default is 100 GB.
int32 disk_size_gb = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The diskSizeGb.
-
getNodeCount
int getNodeCount()
Optional. Total number of nodes in the sessions created for this environment.
int32 node_count = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The nodeCount.
-
getMaxNodeCount
int getMaxNodeCount()
Optional. Max configurable nodes. If max_node_count > node_count, then auto-scaling is enabled.
int32 max_node_count = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The maxNodeCount.
-
-