Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource
- 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
-
#format ⇒ String
Data format of the dataset.
-
#gcs_uri ⇒ String
Google Cloud Storage URI to the input file(s).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringInputModelMonitoringDatasetModelMonitoringGcsSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#format ⇒ String
Data format of the dataset.
Corresponds to the JSON property format
17024 17025 17026 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17024 def format @format end |
#gcs_uri ⇒ String
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
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 |