Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Features belonging to a single feature group that will be synced to Online Store.
Instance Attribute Summary collapse
-
#feature_group_id ⇒ String
Required.
-
#feature_ids ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup
constructor
A new instance of GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup
Returns a new instance of GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup.
8955 8956 8957 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8955 def initialize(**args) update!(**args) end |
Instance Attribute Details
#feature_group_id ⇒ String
Required. Identifier of the feature group.
Corresponds to the JSON property featureGroupId
8948 8949 8950 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8948 def feature_group_id @feature_group_id end |
#feature_ids ⇒ Array<String>
Required. Identifiers of features under the feature group.
Corresponds to the JSON property featureIds
8953 8954 8955 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8953 def feature_ids @feature_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8960 8961 8962 8963 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8960 def update!(**args) @feature_group_id = args[:feature_group_id] if args.key?(:feature_group_id) @feature_ids = args[:feature_ids] if args.key?(:feature_ids) end |