Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1SummaryResult
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1SummaryResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb
Overview
A collection that informs the user the number of times a particular
TransformationResultCode
and error details occurred.
Instance Attribute Summary collapse
-
#code ⇒ String
Corresponds to the JSON property
code
. -
#count ⇒ Fixnum
Corresponds to the JSON property
count
. -
#details ⇒ String
A place for warnings or errors to show up if a transformation didn't work as expected.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1SummaryResult
constructor
A new instance of GooglePrivacyDlpV2beta1SummaryResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1SummaryResult
Returns a new instance of GooglePrivacyDlpV2beta1SummaryResult
3171 3172 3173 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3171 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
Corresponds to the JSON property code
3158 3159 3160 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3158 def code @code end |
#count ⇒ Fixnum
Corresponds to the JSON property count
3163 3164 3165 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3163 def count @count end |
#details ⇒ String
A place for warnings or errors to show up if a transformation didn't
work as expected.
Corresponds to the JSON property details
3169 3170 3171 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3169 def details @details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3176 3177 3178 3179 3180 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3176 def update!(**args) @code = args[:code] if args.key?(:code) @count = args[:count] if args.key?(:count) @details = args[:details] if args.key?(:details) end |