class Google::Apis::EventarcV1beta1::ListTriggersResponse
The response message for the ListTriggers method.
Attributes
next_page_token[RW]
A page token that can be sent to ListTriggers to request the next page. If this is empty, then there are no more pages. Corresponds to the JSON property `nextPageToken` @return [String]
triggers[RW]
The requested triggers, up to the number specified in `page_size`. Corresponds to the JSON property `triggers` @return [Array<Google::Apis::EventarcV1beta1::Trigger>]
unreachable[RW]
Unreachable resources, if any. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/eventarc_v1beta1/classes.rb, line 375 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/eventarc_v1beta1/classes.rb, line 380 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @triggers = args[:triggers] if args.key?(:triggers) @unreachable = args[:unreachable] if args.key?(:unreachable) end