Class: Google::Cloud::AIPlatform::V1::Featurestore

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/aiplatform/v1/featurestore.rb

Overview

Vertex AI Feature Store provides a centralized repository for organizing, storing, and serving ML features. The Featurestore is a top-level container for your features and their values.

Defined Under Namespace

Modules: State Classes: LabelsEntry, OnlineServingConfig

Instance Attribute Summary collapse

Instance Attribute Details

#create_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Timestamp when this Featurestore was created.

Returns:



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end

#encryption_spec::Google::Cloud::AIPlatform::V1::EncryptionSpec

Returns Optional. Customer-managed encryption key spec for data storage. If set, both of the online and offline data storage will be secured by this key.

Returns:



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end

#etag::String

Returns Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.

Returns:

  • (::String)

    Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end

#labels::Google::Protobuf::Map{::String => ::String}

Returns Optional. The labels with user-defined metadata to organize your Featurestore.

Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed.

See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one Featurestore(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    Optional. The labels with user-defined metadata to organize your Featurestore.

    Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed.

    See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one Featurestore(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end

#name::String (readonly)

Returns Output only. Name of the Featurestore. Format: projects/{project}/locations/{location}/featurestores/{featurestore}.

Returns:

  • (::String)

    Output only. Name of the Featurestore. Format: projects/{project}/locations/{location}/featurestores/{featurestore}



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end

#online_serving_config::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig

Returns Optional. Config for online storage resources. The field should not co-exist with the field of OnlineStoreReplicationConfig. If both of it and OnlineStoreReplicationConfig are unset, the feature store will not have an online store and cannot be used for online serving.

Returns:

  • (::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig)

    Optional. Config for online storage resources. The field should not co-exist with the field of OnlineStoreReplicationConfig. If both of it and OnlineStoreReplicationConfig are unset, the feature store will not have an online store and cannot be used for online serving.



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end

#state::Google::Cloud::AIPlatform::V1::Featurestore::State (readonly)

Returns Output only. State of the featurestore.

Returns:



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Timestamp when this Featurestore was last updated.

Returns:



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 67

class Featurestore
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # OnlineServingConfig specifies the details for provisioning online serving
  # resources.
  # @!attribute [rw] fixed_node_count
  #   @return [::Integer]
  #     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.
  # @!attribute [rw] scaling
  #   @return [::Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling]
  #     Online serving scaling configuration.
  #     Only one of `fixed_node_count` and `scaling` can be set. Setting one will
  #     reset the other.
  class OnlineServingConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Online serving scaling configuration. If min_node_count and
    # max_node_count are set to the same value, the cluster will be configured
    # with the fixed number of node (no auto-scaling).
    # @!attribute [rw] min_node_count
    #   @return [::Integer]
    #     Required. The minimum number of nodes to scale down to. Must be greater than or
    #     equal to 1.
    # @!attribute [rw] max_node_count
    #   @return [::Integer]
    #     The maximum number of nodes to scale up to. Must be greater than
    #     min_node_count, and less than or equal to 10 times of 'min_node_count'.
    class Scaling
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Possible states a featurestore can have.
  module State
    # Default value. This value is unused.
    STATE_UNSPECIFIED = 0

    # 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.
    STABLE = 1

    # 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_count` can take minutes to update.
    # While the update is in progress, the featurestore is in the UPDATING
    # state, and the value of `fixed_node_count` can 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 of `fixed_node_count`. The featurestore is still usable in this
    # state.
    UPDATING = 2
  end
end