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.



16990
16991
16992
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16990

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

Instance Attribute Details

#formatString

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

Returns:

  • (String)


16981
16982
16983
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16981

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)


16988
16989
16990
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16988

def gcs_uri
  @gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16995
16996
16997
16998
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16995

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