Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoveryResultScanStatistics

Returns a new instance of GoogleCloudDataplexV1DataDiscoveryResultScanStatistics.



1694
1695
1696
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1694

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

Instance Attribute Details

#data_processed_bytesFixnum

The data processed in bytes. Corresponds to the JSON property dataProcessedBytes

Returns:

  • (Fixnum)


1652
1653
1654
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1652

def data_processed_bytes
  @data_processed_bytes
end

#files_excludedFixnum

The number of files excluded. Corresponds to the JSON property filesExcluded

Returns:

  • (Fixnum)


1657
1658
1659
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1657

def files_excluded
  @files_excluded
end

#filesets_createdFixnum

The number of filesets created. Corresponds to the JSON property filesetsCreated

Returns:

  • (Fixnum)


1662
1663
1664
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1662

def filesets_created
  @filesets_created
end

#filesets_deletedFixnum

The number of filesets deleted. Corresponds to the JSON property filesetsDeleted

Returns:

  • (Fixnum)


1667
1668
1669
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1667

def filesets_deleted
  @filesets_deleted
end

#filesets_updatedFixnum

The number of filesets updated. Corresponds to the JSON property filesetsUpdated

Returns:

  • (Fixnum)


1672
1673
1674
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1672

def filesets_updated
  @filesets_updated
end

#scanned_file_countFixnum

The number of files scanned. Corresponds to the JSON property scannedFileCount

Returns:

  • (Fixnum)


1677
1678
1679
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1677

def scanned_file_count
  @scanned_file_count
end

#tables_createdFixnum

The number of tables created. Corresponds to the JSON property tablesCreated

Returns:

  • (Fixnum)


1682
1683
1684
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1682

def tables_created
  @tables_created
end

#tables_deletedFixnum

The number of tables deleted. Corresponds to the JSON property tablesDeleted

Returns:

  • (Fixnum)


1687
1688
1689
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1687

def tables_deleted
  @tables_deleted
end

#tables_updatedFixnum

The number of tables updated. Corresponds to the JSON property tablesUpdated

Returns:

  • (Fixnum)


1692
1693
1694
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1692

def tables_updated
  @tables_updated
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1699

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