Class: Google::Apis::CloudbuildV1::ListBuildsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudbuildV1::ListBuildsResponse
 
- 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
- 
  
    
      #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. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListBuildsResponse
Returns a new instance of ListBuildsResponse
| 766 767 768 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 766 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
| 759 760 761 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 759 def builds @builds end | 
#next_page_token ⇒ String
Token to receive the next page of results.
Corresponds to the JSON property nextPageToken
| 764 765 766 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 764 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 771 772 773 774 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 771 def update!(**args) @builds = args[:builds] if args.key?(:builds) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |