Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetDiscoveryStatusStats
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetDiscoveryStatusStats
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
The aggregated data statistics for the asset reported by discovery.
Instance Attribute Summary collapse
-
#data_items ⇒ Fixnum
The count of data items within the referenced resource.
-
#data_size ⇒ Fixnum
The number of stored data bytes within the referenced resource.
-
#filesets ⇒ Fixnum
The count of fileset entities within the referenced resource.
-
#tables ⇒ Fixnum
The count of table entities within the referenced resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1AssetDiscoveryStatusStats
constructor
A new instance of GoogleCloudDataplexV1AssetDiscoveryStatusStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1AssetDiscoveryStatusStats
Returns a new instance of GoogleCloudDataplexV1AssetDiscoveryStatusStats.
1024 1025 1026 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1024 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_items ⇒ Fixnum
The count of data items within the referenced resource.
Corresponds to the JSON property dataItems
1007 1008 1009 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1007 def data_items @data_items end |
#data_size ⇒ Fixnum
The number of stored data bytes within the referenced resource.
Corresponds to the JSON property dataSize
1012 1013 1014 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1012 def data_size @data_size end |
#filesets ⇒ Fixnum
The count of fileset entities within the referenced resource.
Corresponds to the JSON property filesets
1017 1018 1019 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1017 def filesets @filesets end |
#tables ⇒ Fixnum
The count of table entities within the referenced resource.
Corresponds to the JSON property tables
1022 1023 1024 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1022 def tables @tables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1029 1030 1031 1032 1033 1034 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1029 def update!(**args) @data_items = args[:data_items] if args.key?(:data_items) @data_size = args[:data_size] if args.key?(:data_size) @filesets = args[:filesets] if args.key?(:filesets) @tables = args[:tables] if args.key?(:tables) end |