Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1BigQuerySource
- Inherits:
-
Object
- Object
- Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1BigQuerySource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datalabeling_v1beta1/classes.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb
Overview
The BigQuery location for input data. If used in an EvaluationJob, this is where the service saves the prediction input and output sampled from the model version.
Instance Attribute Summary collapse
-
#input_uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatalabelingV1beta1BigQuerySource
constructor
A new instance of GoogleCloudDatalabelingV1beta1BigQuerySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatalabelingV1beta1BigQuerySource
Returns a new instance of GoogleCloudDatalabelingV1beta1BigQuerySource.
1194 1195 1196 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 1194 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_uri ⇒ String
Required. BigQuery URI to a table, up to 2,000 characters long. If you specify
the URI of a table that does not exist, Data Labeling Service creates a table
at the URI with the correct schema when you create your EvaluationJob. If you
specify the URI of a table that already exists, it must have the correct
schema.
Provide the table URI in the following format: "bq://your_project_id
/
your_dataset_name
/your_table_name
" Learn more.
Corresponds to the JSON property inputUri
1192 1193 1194 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 1192 def input_uri @input_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1199 1200 1201 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 1199 def update!(**args) @input_uri = args[:input_uri] if args.key?(:input_uri) end |