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.



17006
17007
17008
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17006

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)


16997
16998
16999
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16997

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)


17004
17005
17006
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17004

def table_uri
  @table_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17011
17012
17013
17014
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17011

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