Class: Google::Apis::ServicemanagementV1::ListServiceRolloutsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicemanagementV1::ListServiceRolloutsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb 
Overview
Response message for ListServiceRollouts method.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The token of the next page of results.
 - 
  
    
      #rollouts  ⇒ Array<Google::Apis::ServicemanagementV1::Rollout> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of rollout resources.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListServiceRolloutsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListServiceRolloutsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListServiceRolloutsResponse
Returns a new instance of ListServiceRolloutsResponse.
      2303 2304 2305  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2303 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
The token of the next page of results.
Corresponds to the JSON property nextPageToken
      2296 2297 2298  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2296 def next_page_token @next_page_token end  | 
  
#rollouts ⇒ Array<Google::Apis::ServicemanagementV1::Rollout>
The list of rollout resources.
Corresponds to the JSON property rollouts
      2301 2302 2303  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2301 def rollouts @rollouts end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2308 2309 2310 2311  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2308 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @rollouts = args[:rollouts] if args.key?(:rollouts) end  |