Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec
- 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
Defines the Feature value(s) to import.
Instance Attribute Summary collapse
-
#id ⇒ String
Required.
-
#source_field ⇒ String
Source column to get the Feature values from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec
constructor
A new instance of GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec
Returns a new instance of GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec.
10199 10200 10201 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10199 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Required. ID of the Feature to import values of. This Feature must exist in
the target EntityType, or the request will fail.
Corresponds to the JSON property id
10191 10192 10193 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10191 def id @id end |
#source_field ⇒ String
Source column to get the Feature values from. If not set, uses the column with
the same name as the Feature ID.
Corresponds to the JSON property sourceField
10197 10198 10199 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10197 def source_field @source_field end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10204 10205 10206 10207 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10204 def update!(**args) @id = args[:id] if args.key?(:id) @source_field = args[:source_field] if args.key?(:source_field) end |