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.
2334 2335 2336 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2334 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
2327 2328 2329 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2327 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
2332 2333 2334 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2332 def rollouts @rollouts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2339 2340 2341 2342 |
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 2339 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @rollouts = args[:rollouts] if args.key?(:rollouts) end |