Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValueDestination
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValueDestination
- 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
A destination location for Feature values and format.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination
The BigQuery location for the output content.
-
#csv_destination ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CsvDestination
The storage details for CSV output content.
-
#tfrecord_destination ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TfRecordDestination
The storage details for TFRecord output content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureValueDestination
constructor
A new instance of GoogleCloudAiplatformV1FeatureValueDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureValueDestination
Returns a new instance of GoogleCloudAiplatformV1FeatureValueDestination.
6268 6269 6270 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6268 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination
The BigQuery location for the output content.
Corresponds to the JSON property bigqueryDestination
6256 6257 6258 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6256 def bigquery_destination @bigquery_destination end |
#csv_destination ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CsvDestination
The storage details for CSV output content.
Corresponds to the JSON property csvDestination
6261 6262 6263 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6261 def csv_destination @csv_destination end |
#tfrecord_destination ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TfRecordDestination
The storage details for TFRecord output content.
Corresponds to the JSON property tfrecordDestination
6266 6267 6268 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6266 def tfrecord_destination @tfrecord_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6273 6274 6275 6276 6277 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6273 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @csv_destination = args[:csv_destination] if args.key?(:csv_destination) @tfrecord_destination = args[:tfrecord_destination] if args.key?(:tfrecord_destination) end |