Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource.



16963
16964
16965
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16963

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#queryString

Standard SQL to be used instead of the table_uri. Corresponds to the JSON property query

Returns:

  • (String)


16954
16955
16956
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16954

def query
  @query
end

#table_uriString

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

Returns:

  • (String)


16961
16962
16963
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16961

def table_uri
  @table_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16968
16969
16970
16971
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16968

def update!(**args)
  @query = args[:query] if args.key?(:query)
  @table_uri = args[:table_uri] if args.key?(:table_uri)
end