Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource

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

Dataset spec for data stored in Google Cloud Storage.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource.



33907
33908
33909
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33907

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

Instance Attribute Details

#formatString

Data format of the dataset. Corresponds to the JSON property format

Returns:

  • (String)


33899
33900
33901
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33899

def format
  @format
end

#gcs_uriString

Google Cloud Storage URI to the input file(s). May contain wildcards. For more information on wildcards, see https://cloud.google.com/storage/docs/wildcards. Corresponds to the JSON property gcsUri

Returns:

  • (String)


33905
33906
33907
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33905

def gcs_uri
  @gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33912
33913
33914
33915
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33912

def update!(**args)
  @format = args[:format] if args.key?(:format)
  @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
end