class Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse

The response message for listing DLP jobs.

Attributes

jobs[RW]

A list of DlpJobs that matches the specified filter in the request. Corresponds to the JSON property `jobs` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob>]

next_page_token[RW]

The standard List next-page token. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 4155
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 4160
def update!(**args)
  @jobs = args[:jobs] if args.key?(:jobs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end