Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable

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

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) ⇒ GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable

Returns a new instance of GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringBigQueryTable.



11708
11709
11710
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11708

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)


11696
11697
11698
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11696

def bigquery_table_path
  @bigquery_table_path
end

#log_sourceString

The source of log. Corresponds to the JSON property logSource

Returns:

  • (String)


11701
11702
11703
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11701

def log_source
  @log_source
end

#log_typeString

The type of log. Corresponds to the JSON property logType

Returns:

  • (String)


11706
11707
11708
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11706

def log_type
  @log_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11713
11714
11715
11716
11717
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11713

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