Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse
 
- 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
The response message for listing DLP jobs.
Instance Attribute Summary collapse
- 
  
    
      #jobs  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of DlpJobs that matches the specified filter in the request. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The standard List next-page token. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2ListDlpJobsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2ListDlpJobsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListDlpJobsResponse
Returns a new instance of GooglePrivacyDlpV2ListDlpJobsResponse
| 3104 3105 3106 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3104 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#jobs ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob>
A list of DlpJobs that matches the specified filter in the request.
Corresponds to the JSON property jobs
| 3097 3098 3099 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3097 def jobs @jobs end | 
#next_page_token ⇒ String
The standard List next-page token.
Corresponds to the JSON property nextPageToken
| 3102 3103 3104 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3102 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3109 3110 3111 3112 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3109 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |