Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQuerySource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQuerySource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
The BigQuery location for the input content.
Instance Attribute Summary collapse
-
#input_uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1BigQuerySource
constructor
A new instance of GoogleCloudAiplatformV1beta1BigQuerySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1BigQuerySource
Returns a new instance of GoogleCloudAiplatformV1beta1BigQuerySource.
2398 2399 2400 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2398 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_uri ⇒ String
Required. BigQuery URI to a table, up to 2000 characters long. Accepted forms:
- BigQuery path. For example:
bq://projectId.bqDatasetId.bqTableId
. Corresponds to the JSON propertyinputUri
2396 2397 2398 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2396 def input_uri @input_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2403 2404 2405 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2403 def update!(**args) @input_uri = args[:input_uri] if args.key?(:input_uri) end |