Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb

Overview

Response message for ListJobTriggers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2ListJobTriggersResponse

Returns a new instance of GooglePrivacyDlpV2ListJobTriggersResponse.



4852
4853
4854
# File 'lib/google/apis/dlp_v2/classes.rb', line 4852

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#job_triggersArray<Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger>

List of triggeredJobs, up to page_size in ListJobTriggersRequest. Corresponds to the JSON property jobTriggers



4844
4845
4846
# File 'lib/google/apis/dlp_v2/classes.rb', line 4844

def job_triggers
  @job_triggers
end

#next_page_tokenString

If the next page is available then the next page token to be used in following ListJobTriggers request. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4850
4851
4852
# File 'lib/google/apis/dlp_v2/classes.rb', line 4850

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4857
4858
4859
4860
# File 'lib/google/apis/dlp_v2/classes.rb', line 4857

def update!(**args)
  @job_triggers = args[:job_triggers] if args.key?(:job_triggers)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end