Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EntityIdSelector
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EntityIdSelector
- 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
Selector for entityId. Getting ids from the given source.
Instance Attribute Summary collapse
-
#csv_source ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CsvSource
The storage details for CSV input content.
-
#entity_id_field ⇒ String
Source column that holds entity IDs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1EntityIdSelector
constructor
A new instance of GoogleCloudAiplatformV1EntityIdSelector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1EntityIdSelector
Returns a new instance of GoogleCloudAiplatformV1EntityIdSelector.
8582 8583 8584 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8582 def initialize(**args) update!(**args) end |
Instance Attribute Details
#csv_source ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CsvSource
The storage details for CSV input content.
Corresponds to the JSON property csvSource
8574 8575 8576 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8574 def csv_source @csv_source end |
#entity_id_field ⇒ String
Source column that holds entity IDs. If not provided, entity IDs are extracted
from the column named entity_id.
Corresponds to the JSON property entityIdField
8580 8581 8582 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8580 def entity_id_field @entity_id_field end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8587 8588 8589 8590 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8587 def update!(**args) @csv_source = args[:csv_source] if args.key?(:csv_source) @entity_id_field = args[:entity_id_field] if args.key?(:entity_id_field) end |