Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable
- 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
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.
-
#request_response_logging_schema_version ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable
Returns a new instance of GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable.
15783 15784 15785 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15783 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
15765 15766 15767 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15765 def bigquery_table_path @bigquery_table_path end |
#log_source ⇒ String
The source of log.
Corresponds to the JSON property logSource
15770 15771 15772 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15770 def log_source @log_source end |
#log_type ⇒ String
The type of log.
Corresponds to the JSON property logType
15775 15776 15777 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15775 def log_type @log_type end |
#request_response_logging_schema_version ⇒ String
Output only. The schema version of the request/response logging BigQuery table.
Default to v1 if unset.
Corresponds to the JSON property requestResponseLoggingSchemaVersion
15781 15782 15783 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15781 def request_response_logging_schema_version @request_response_logging_schema_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15788 15789 15790 15791 15792 15793 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15788 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) @request_response_logging_schema_version = args[:request_response_logging_schema_version] if args.key?(:request_response_logging_schema_version) end |