class Google::Apis::CloudbuildV1::ListBuildsResponse
Response including listed builds.
Attributes
builds[RW]
Builds will be sorted by create_time, descending. Corresponds to the JSON property `builds` @return [Array<Google::Apis::CloudbuildV1::Build>]
next_page_token[RW]
Token to receive the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/cloudbuild_v1/classes.rb, line 516 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/cloudbuild_v1/classes.rb, line 521 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @builds = args[:builds] if args.key?(:builds) end