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.



16702
16703
16704
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16702

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)


16693
16694
16695
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16693

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)


16700
16701
16702
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16700

def table_uri
  @table_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16707
16708
16709
16710
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16707

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