class Google::Apis::CloudbuildV1::ListBuildTriggersResponse
Response containing existing `BuildTriggers`.
Attributes
next_page_token[RW]
Token to receive the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
triggers[RW]
`BuildTriggers` for the project, sorted by `create_time` descending. Corresponds to the JSON property `triggers` @return [Array<Google::Apis::CloudbuildV1::BuildTrigger>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudbuild_v1/classes.rb, line 1660 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudbuild_v1/classes.rb, line 1665 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @triggers = args[:triggers] if args.key?(:triggers) end