Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
A Feature Registry source for features that need to be synced to Online Store.
Instance Attribute Summary collapse
-
#feature_groups ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySourceFeatureGroup>
Required.
-
#project_number ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource
constructor
A new instance of GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource
Returns a new instance of GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource.
9995 9996 9997 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9995 def initialize(**args) update!(**args) end |
Instance Attribute Details
#feature_groups ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySourceFeatureGroup>
Required. List of features that need to be synced to Online Store.
Corresponds to the JSON property featureGroups
9988 9989 9990 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9988 def feature_groups @feature_groups end |
#project_number ⇒ Fixnum
Optional. The project number of the parent project of the Feature Groups.
Corresponds to the JSON property projectNumber
9993 9994 9995 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9993 def project_number @project_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10000 10001 10002 10003 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10000 def update!(**args) @feature_groups = args[:feature_groups] if args.key?(:feature_groups) @project_number = args[:project_number] if args.key?(:project_number) end |