Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureViewDataKey

Returns a new instance of GoogleCloudAiplatformV1FeatureViewDataKey.



10135
10136
10137
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10135

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#composite_keyGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKeyCompositeKey

ID that is comprised from several parts (columns). Corresponds to the JSON property compositeKey



10128
10129
10130
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10128

def composite_key
  @composite_key
end

#keyString

String key to use for lookup. Corresponds to the JSON property key

Returns:

  • (String)


10133
10134
10135
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10133

def key
  @key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10140
10141
10142
10143
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10140

def update!(**args)
  @composite_key = args[:composite_key] if args.key?(:composite_key)
  @key = args[:key] if args.key?(:key)
end