Package com.google.cloud.notebooks.v1
Interface RuntimeAcceleratorConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RuntimeAcceleratorConfig
,RuntimeAcceleratorConfig.Builder
public interface RuntimeAcceleratorConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCoreCount()
Count of cores of this accelerator.RuntimeAcceleratorConfig.AcceleratorType
getType()
Accelerator model.int
getTypeValue()
Accelerator model.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
Accelerator model.
.google.cloud.notebooks.v1.RuntimeAcceleratorConfig.AcceleratorType type = 1;
- Returns:
- The enum numeric value on the wire for type.
-
getType
RuntimeAcceleratorConfig.AcceleratorType getType()
Accelerator model.
.google.cloud.notebooks.v1.RuntimeAcceleratorConfig.AcceleratorType type = 1;
- Returns:
- The type.
-
getCoreCount
long getCoreCount()
Count of cores of this accelerator.
int64 core_count = 2;
- Returns:
- The coreCount.
-
-