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.



17033
17034
17035
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17033

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

Instance Attribute Details

#formatString

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

Returns:

  • (String)


17024
17025
17026
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17024

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/gsutil/ addlhelp/WildcardNames. Corresponds to the JSON property gcsUri

Returns:

  • (String)


17031
17032
17033
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17031

def gcs_uri
  @gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17038
17039
17040
17041
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17038

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