Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource
- 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
Dataset spec for data sotred in BigQuery.
Instance Attribute Summary collapse
-
#query ⇒ String
Standard SQL to be used instead of the
table_uri. -
#table_uri ⇒ String
BigQuery URI to a table, up to 2000 characters long.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource.
33881 33882 33883 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33881 def initialize(**args) update!(**args) end |
Instance Attribute Details
#query ⇒ String
Standard SQL to be used instead of the table_uri.
Corresponds to the JSON property query
33872 33873 33874 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33872 def query @query end |
#table_uri ⇒ String
BigQuery URI to a table, up to 2000 characters long. All the columns in the
table will be selected. Accepted forms: * BigQuery path. For example: bq://
projectId.bqDatasetId.bqTableId.
Corresponds to the JSON property tableUri
33879 33880 33881 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33879 def table_uri @table_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33886 33887 33888 33889 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33886 def update!(**args) @query = args[:query] if args.key?(:query) @table_uri = args[:table_uri] if args.key?(:table_uri) end |