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

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudbuild_v1/classes.rb,
generated/google/apis/cloudbuild_v1/representations.rb,
generated/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.



938
939
940
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 938

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



930
931
932
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 930

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)


936
937
938
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 936

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



943
944
945
946
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 943

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