class Google::Apis::CloudbuildV1::ListWorkerPoolsResponse
Response containing existing `WorkerPools`.
Attributes
next_page_token[RW]
Continuation token used to page through large result sets. Provide this value in a subsequent ListWorkerPoolsRequest to return the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
worker_pools[RW]
`WorkerPools` for the specified project. Corresponds to the JSON property `workerPools` @return [Array<Google::Apis::CloudbuildV1::WorkerPool>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudbuild_v1/classes.rb, line 1731 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 1736 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @worker_pools = args[:worker_pools] if args.key?(:worker_pools) end