Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1ListInspectFindingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1ListInspectFindingsResponse
- 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
Response to the ListInspectFindings request.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If not empty, indicates that there may be more results that match the request; this value should be passed in a new
ListInspectFindingsRequest
. -
#result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1InspectResult
All the findings for a single scanned item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1ListInspectFindingsResponse
constructor
A new instance of GooglePrivacyDlpV2beta1ListInspectFindingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1ListInspectFindingsResponse
Returns a new instance of GooglePrivacyDlpV2beta1ListInspectFindingsResponse
2385 2386 2387 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2385 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If not empty, indicates that there may be more results that match the
request; this value should be passed in a new ListInspectFindingsRequest
.
Corresponds to the JSON property nextPageToken
2378 2379 2380 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2378 def next_page_token @next_page_token end |
#result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1InspectResult
All the findings for a single scanned item.
Corresponds to the JSON property result
2383 2384 2385 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2383 def result @result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2390 2391 2392 2393 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2390 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @result = args[:result] if args.key?(:result) end |