Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable

Returns a new instance of GoogleCloudAiplatformV1ModelDeploymentMonitoringBigQueryTable.



17944
17945
17946
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17944

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

Instance Attribute Details

#bigquery_table_pathString

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

Returns:

  • (String)


17926
17927
17928
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17926

def bigquery_table_path
  @bigquery_table_path
end

#log_sourceString

The source of log. Corresponds to the JSON property logSource

Returns:

  • (String)


17931
17932
17933
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17931

def log_source
  @log_source
end

#log_typeString

The type of log. Corresponds to the JSON property logType

Returns:

  • (String)


17936
17937
17938
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17936

def log_type
  @log_type
end

#request_response_logging_schema_versionString

Output only. The schema version of the request/response logging BigQuery table. Default to v1 if unset. Corresponds to the JSON property requestResponseLoggingSchemaVersion

Returns:

  • (String)


17942
17943
17944
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17942

def request_response_logging_schema_version
  @request_response_logging_schema_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17949
17950
17951
17952
17953
17954
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17949

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