Class: Google::Apis::DlpV2::GooglePrivacyDlpV2HybridContentItem
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2HybridContentItem
- 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
Overview
An individual hybrid item to inspect. Will be stored temporarily during processing.
Instance Attribute Summary collapse
-
#finding_details ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HybridFindingDetails
Populate to associate additional data with each finding.
-
#item ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem
Container structure for the content to inspect.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2HybridContentItem
constructor
A new instance of GooglePrivacyDlpV2HybridContentItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2HybridContentItem
Returns a new instance of GooglePrivacyDlpV2HybridContentItem.
2673 2674 2675 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 2673 def initialize(**args) update!(**args) end |
Instance Attribute Details
#finding_details ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HybridFindingDetails
Populate to associate additional data with each finding.
Corresponds to the JSON property findingDetails
2666 2667 2668 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 2666 def finding_details @finding_details end |
#item ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem
Container structure for the content to inspect.
Corresponds to the JSON property item
2671 2672 2673 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 2671 def item @item end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2678 2679 2680 2681 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 2678 def update!(**args) @finding_details = args[:finding_details] if args.key?(:finding_details) @item = args[:item] if args.key?(:item) end |