Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey
- 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
Lookup key for a feature view.
Instance Attribute Summary collapse
-
#composite_key ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKeyCompositeKey
ID that is comprised from several parts (columns).
-
#key ⇒ String
String key to use for lookup.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureViewDataKey
constructor
A new instance of GoogleCloudAiplatformV1FeatureViewDataKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureViewDataKey
Returns a new instance of GoogleCloudAiplatformV1FeatureViewDataKey.
14112 14113 14114 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14112 def initialize(**args) update!(**args) end |
Instance Attribute Details
#composite_key ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKeyCompositeKey
ID that is comprised from several parts (columns).
Corresponds to the JSON property compositeKey
14105 14106 14107 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14105 def composite_key @composite_key end |
#key ⇒ String
String key to use for lookup.
Corresponds to the JSON property key
14110 14111 14112 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14110 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14117 14118 14119 14120 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14117 def update!(**args) @composite_key = args[:composite_key] if args.key?(:composite_key) @key = args[:key] if args.key?(:key) end |