Class: Google::Apis::CloudbuildV1::ListBuildsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::ListBuildsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1/classes.rb,
lib/google/apis/cloudbuild_v1/representations.rb,
lib/google/apis/cloudbuild_v1/representations.rb
Overview
Response including listed builds.
Instance Attribute Summary collapse
-
#builds ⇒ Array<Google::Apis::CloudbuildV1::Build>
Builds will be sorted by
create_time, descending. -
#next_page_token ⇒ String
Token to receive the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBuildsResponse
constructor
A new instance of ListBuildsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListBuildsResponse
Returns a new instance of ListBuildsResponse.
1494 1495 1496 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1494 def initialize(**args) update!(**args) end |
Instance Attribute Details
#builds ⇒ Array<Google::Apis::CloudbuildV1::Build>
Builds will be sorted by create_time, descending.
Corresponds to the JSON property builds
1486 1487 1488 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1486 def builds @builds end |
#next_page_token ⇒ String
Token to receive the next page of results. This will be absent if the end of
the response list has been reached.
Corresponds to the JSON property nextPageToken
1492 1493 1494 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1492 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1499 1500 1501 1502 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1499 def update!(**args) @builds = args[:builds] if args.key?(:builds) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |