Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1ListInspectFindingsResponse

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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_tokenString

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

Returns:

  • (String)


2378
2379
2380
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2378

def next_page_token
  @next_page_token
end

#resultGoogle::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