Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Result
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2Result
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb
Instance Attribute Summary collapse
-
#info_type_stats ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeStats>
Statistics of how many instances of each info type were found during inspect job.
-
#processed_bytes ⇒ Fixnum
Total size in bytes that were processed.
-
#total_estimated_bytes ⇒ Fixnum
Estimate of the number of bytes to process.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2Result
constructor
A new instance of GooglePrivacyDlpV2Result.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2Result
Returns a new instance of GooglePrivacyDlpV2Result
3970 3971 3972 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3970 def initialize(**args) update!(**args) end |
Instance Attribute Details
#info_type_stats ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeStats>
Statistics of how many instances of each info type were found during
inspect job.
Corresponds to the JSON property infoTypeStats
3958 3959 3960 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3958 def info_type_stats @info_type_stats end |
#processed_bytes ⇒ Fixnum
Total size in bytes that were processed.
Corresponds to the JSON property processedBytes
3963 3964 3965 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3963 def processed_bytes @processed_bytes end |
#total_estimated_bytes ⇒ Fixnum
Estimate of the number of bytes to process.
Corresponds to the JSON property totalEstimatedBytes
3968 3969 3970 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3968 def total_estimated_bytes @total_estimated_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3975 3976 3977 3978 3979 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3975 def update!(**args) @info_type_stats = args[:info_type_stats] if args.key?(:info_type_stats) @processed_bytes = args[:processed_bytes] if args.key?(:processed_bytes) @total_estimated_bytes = args[:total_estimated_bytes] if args.key?(:total_estimated_bytes) end |