Class: Google::Apis::CloudbuildV1::ListBuildsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListBuildsResponse

Returns a new instance of ListBuildsResponse.



2923
2924
2925
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2923

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#buildsArray<Google::Apis::CloudbuildV1::Build>

Builds will be sorted by create_time, descending. Corresponds to the JSON property builds



2915
2916
2917
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2915

def builds
  @builds
end

#next_page_tokenString

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

Returns:

  • (String)


2921
2922
2923
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2921

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2928
2929
2930
2931
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2928

def update!(**args)
  @builds = args[:builds] if args.key?(:builds)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end