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.
16990 16991 16992 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16990 def initialize(**args) update!(**args) end |
Instance Attribute Details
#format ⇒ String
Data format of the dataset.
Corresponds to the JSON property format
16981 16982 16983 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16981 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
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 |