Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDataset

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

Input dataset spec.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDataset

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDataset.



34439
34440
34441
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 34439

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

Instance Attribute Details

#bigquery_sourceGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringBigQuerySource

Dataset spec for data sotred in BigQuery. Corresponds to the JSON property bigquerySource



34422
34423
34424
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 34422

def bigquery_source
  @bigquery_source
end

#gcs_sourceGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource

Dataset spec for data stored in Google Cloud Storage. Corresponds to the JSON property gcsSource



34427
34428
34429
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 34427

def gcs_source
  @gcs_source
end

#timestamp_fieldString

The timestamp field. Usually for serving data. Corresponds to the JSON property timestampField

Returns:

  • (String)


34432
34433
34434
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 34432

def timestamp_field
  @timestamp_field
end

#vertex_datasetString

Resource name of the Vertex AI managed dataset. Corresponds to the JSON property vertexDataset

Returns:

  • (String)


34437
34438
34439
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 34437

def vertex_dataset
  @vertex_dataset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



34444
34445
34446
34447
34448
34449
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 34444

def update!(**args)
  @bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
  @timestamp_field = args[:timestamp_field] if args.key?(:timestamp_field)
  @vertex_dataset = args[:vertex_dataset] if args.key?(:vertex_dataset)
end