Featurestore_State class final
Possible states a featurestore can have.
- Inheritance
-
- Object
- ProtoEnum
- Featurestore_State
Constructors
- Featurestore_State(String value)
-
const
- Featurestore_State.fromJson(Object? json)
-
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- isNotDefault → bool
-
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → String
-
finalinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → String -
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
- $default → const Featurestore_State
- The default value for Featurestore_State.
- stable → const Featurestore_State
- State when the featurestore configuration is not being updated and the fields reflect the current configuration of the featurestore. The featurestore is usable in this state.
- stateUnspecified → const Featurestore_State
- Default value. This value is unused.
- updating → const Featurestore_State
-
The state of the featurestore configuration when it is being updated.
During an update, the fields reflect either the original configuration
or the updated configuration of the featurestore. For example,
online_serving_config.fixed_node_countcan take minutes to update. While the update is in progress, the featurestore is in the UPDATING state, and the value offixed_node_countcan be the original value or the updated value, depending on the progress of the operation. Until the update completes, the actual number of nodes can still be the original value offixed_node_count. The featurestore is still usable in this state.