Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
- 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
Describes result statistics of a data scan discovery job.
Instance Attribute Summary collapse
-
#data_processed_bytes ⇒ Fixnum
The data processed in bytes.
-
#files_excluded ⇒ Fixnum
The number of files excluded.
-
#filesets_created ⇒ Fixnum
The number of filesets created.
-
#filesets_deleted ⇒ Fixnum
The number of filesets deleted.
-
#filesets_updated ⇒ Fixnum
The number of filesets updated.
-
#scanned_file_count ⇒ Fixnum
The number of files scanned.
-
#tables_created ⇒ Fixnum
The number of tables created.
-
#tables_deleted ⇒ Fixnum
The number of tables deleted.
-
#tables_updated ⇒ Fixnum
The number of tables updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
constructor
A new instance of GoogleCloudDataplexV1DataDiscoveryResultScanStatistics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
Returns a new instance of GoogleCloudDataplexV1DataDiscoveryResultScanStatistics.
1700 1701 1702 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1700 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_processed_bytes ⇒ Fixnum
The data processed in bytes.
Corresponds to the JSON property dataProcessedBytes
1658 1659 1660 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1658 def data_processed_bytes @data_processed_bytes end |
#files_excluded ⇒ Fixnum
The number of files excluded.
Corresponds to the JSON property filesExcluded
1663 1664 1665 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1663 def files_excluded @files_excluded end |
#filesets_created ⇒ Fixnum
The number of filesets created.
Corresponds to the JSON property filesetsCreated
1668 1669 1670 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1668 def filesets_created @filesets_created end |
#filesets_deleted ⇒ Fixnum
The number of filesets deleted.
Corresponds to the JSON property filesetsDeleted
1673 1674 1675 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1673 def filesets_deleted @filesets_deleted end |
#filesets_updated ⇒ Fixnum
The number of filesets updated.
Corresponds to the JSON property filesetsUpdated
1678 1679 1680 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1678 def filesets_updated @filesets_updated end |
#scanned_file_count ⇒ Fixnum
The number of files scanned.
Corresponds to the JSON property scannedFileCount
1683 1684 1685 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1683 def scanned_file_count @scanned_file_count end |
#tables_created ⇒ Fixnum
The number of tables created.
Corresponds to the JSON property tablesCreated
1688 1689 1690 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1688 def tables_created @tables_created end |
#tables_deleted ⇒ Fixnum
The number of tables deleted.
Corresponds to the JSON property tablesDeleted
1693 1694 1695 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1693 def tables_deleted @tables_deleted end |
#tables_updated ⇒ Fixnum
The number of tables updated.
Corresponds to the JSON property tablesUpdated
1698 1699 1700 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1698 def tables_updated @tables_updated end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1705 def update!(**args) @data_processed_bytes = args[:data_processed_bytes] if args.key?(:data_processed_bytes) @files_excluded = args[:files_excluded] if args.key?(:files_excluded) @filesets_created = args[:filesets_created] if args.key?(:filesets_created) @filesets_deleted = args[:filesets_deleted] if args.key?(:filesets_deleted) @filesets_updated = args[:filesets_updated] if args.key?(:filesets_updated) @scanned_file_count = args[:scanned_file_count] if args.key?(:scanned_file_count) @tables_created = args[:tables_created] if args.key?(:tables_created) @tables_deleted = args[:tables_deleted] if args.key?(:tables_deleted) @tables_updated = args[:tables_updated] if args.key?(:tables_updated) end |