Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaTextDatasetMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaTextDatasetMetadata
- 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
The metadata of Datasets that contain Text DataItems.
Instance Attribute Summary collapse
-
#data_item_schema_uri ⇒ String
Points to a YAML file stored on Google Cloud Storage describing payload of the Text DataItems that belong to this Dataset.
-
#gcs_bucket ⇒ String
Google Cloud Storage Bucket name that contains the blob data of this Dataset.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SchemaTextDatasetMetadata
constructor
A new instance of GoogleCloudAiplatformV1beta1SchemaTextDatasetMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SchemaTextDatasetMetadata
Returns a new instance of GoogleCloudAiplatformV1beta1SchemaTextDatasetMetadata.
19790 19791 19792 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19790 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_item_schema_uri ⇒ String
Points to a YAML file stored on Google Cloud Storage describing payload of the
Text DataItems that belong to this Dataset.
Corresponds to the JSON property dataItemSchemaUri
19783 19784 19785 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19783 def data_item_schema_uri @data_item_schema_uri end |
#gcs_bucket ⇒ String
Google Cloud Storage Bucket name that contains the blob data of this Dataset.
Corresponds to the JSON property gcsBucket
19788 19789 19790 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19788 def gcs_bucket @gcs_bucket end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19795 19796 19797 19798 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19795 def update!(**args) @data_item_schema_uri = args[:data_item_schema_uri] if args.key?(:data_item_schema_uri) @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket) end |