Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1VertexDatasetSpec

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1VertexDatasetSpec

Returns a new instance of GoogleCloudDatacatalogV1VertexDatasetSpec.



2180
2181
2182
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2180

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

Instance Attribute Details

#data_item_countFixnum

The number of DataItems in this Dataset. Only apply for non-structured Dataset. Corresponds to the JSON property dataItemCount

Returns:

  • (Fixnum)


2173
2174
2175
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2173

def data_item_count
  @data_item_count
end

#data_typeString

Type of the dataset. Corresponds to the JSON property dataType

Returns:

  • (String)


2178
2179
2180
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2178

def data_type
  @data_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2185
2186
2187
2188
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 2185

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