Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
ModelDeploymentMonitoringBigQueryTable specifies the BigQuery table name as well as some information of the logs stored in this table.
Instance Attribute Summary collapse
-
#bigquery_table_path ⇒ String
The created BigQuery table to store logs.
-
#log_source ⇒ String
The source of log.
-
#log_type ⇒ String
The type of log.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable
constructor
A new instance of GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable
Returns a new instance of GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable.
13129 13130 13131 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13129 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_table_path ⇒ String
The created BigQuery table to store logs. Customer could do their own query &
analysis. Format: bq://.model_deployment_monitoring_._
Corresponds to the JSON property bigqueryTablePath
13117 13118 13119 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13117 def bigquery_table_path @bigquery_table_path end |
#log_source ⇒ String
The source of log.
Corresponds to the JSON property logSource
13122 13123 13124 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13122 def log_source @log_source end |
#log_type ⇒ String
The type of log.
Corresponds to the JSON property logType
13127 13128 13129 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13127 def log_type @log_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13134 13135 13136 13137 13138 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13134 def update!(**args) @bigquery_table_path = args[:bigquery_table_path] if args.key?(:bigquery_table_path) @log_source = args[:log_source] if args.key?(:log_source) @log_type = args[:log_type] if args.key?(:log_type) end |