Package com.google.cloud.aiplatform.v1
Interface Featurestore.OnlineServingConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Featurestore.OnlineServingConfig
,Featurestore.OnlineServingConfig.Builder
- Enclosing class:
- Featurestore
public static interface Featurestore.OnlineServingConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFixedNodeCount()
The number of nodes for the online store.Featurestore.OnlineServingConfig.Scaling
getScaling()
Online serving scaling configuration.Featurestore.OnlineServingConfig.ScalingOrBuilder
getScalingOrBuilder()
Online serving scaling configuration.boolean
hasScaling()
Online serving scaling configuration.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFixedNodeCount
int getFixedNodeCount()
The number of nodes for the online store. The number of nodes doesn't scale automatically, but you can manually update the number of nodes. If set to 0, the featurestore will not have an online store and cannot be used for online serving.
int32 fixed_node_count = 2;
- Returns:
- The fixedNodeCount.
-
hasScaling
boolean hasScaling()
Online serving scaling configuration. Only one of `fixed_node_count` and `scaling` can be set. Setting one will reset the other.
.google.cloud.aiplatform.v1.Featurestore.OnlineServingConfig.Scaling scaling = 4;
- Returns:
- Whether the scaling field is set.
-
getScaling
Featurestore.OnlineServingConfig.Scaling getScaling()
Online serving scaling configuration. Only one of `fixed_node_count` and `scaling` can be set. Setting one will reset the other.
.google.cloud.aiplatform.v1.Featurestore.OnlineServingConfig.Scaling scaling = 4;
- Returns:
- The scaling.
-
getScalingOrBuilder
Featurestore.OnlineServingConfig.ScalingOrBuilder getScalingOrBuilder()
Online serving scaling configuration. Only one of `fixed_node_count` and `scaling` can be set. Setting one will reset the other.
.google.cloud.aiplatform.v1.Featurestore.OnlineServingConfig.Scaling scaling = 4;
-
-