Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1VertexDatasetSpec
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1VertexDatasetSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1beta1/classes.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb
Overview
Specification for vertex dataset resources.
Instance Attribute Summary collapse
-
#data_item_count ⇒ Fixnum
The number of DataItems in this Dataset.
-
#data_type ⇒ String
Type of the dataset.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1VertexDatasetSpec
constructor
A new instance of GoogleCloudDatacatalogV1VertexDatasetSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1VertexDatasetSpec
Returns a new instance of GoogleCloudDatacatalogV1VertexDatasetSpec.
2255 2256 2257 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_item_count ⇒ Fixnum
The number of DataItems in this Dataset. Only apply for non-structured Dataset.
Corresponds to the JSON property dataItemCount
2248 2249 2250 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2248 def data_item_count @data_item_count end |
#data_type ⇒ String
Type of the dataset.
Corresponds to the JSON property dataType
2253 2254 2255 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2253 def data_type @data_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2260 2261 2262 2263 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2260 def update!(**args) @data_item_count = args[:data_item_count] if args.key?(:data_item_count) @data_type = args[:data_type] if args.key?(:data_type) end |