class Google::Apis::ServicemanagementV1::ListServiceRolloutsResponse
Response message for ListServiceRollouts method.
Attributes
next_page_token[RW]
The token of the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
rollouts[RW]
The list of rollout resources. Corresponds to the JSON property `rollouts` @return [Array<Google::Apis::ServicemanagementV1::Rollout>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicemanagement_v1/classes.rb, line 1922 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/servicemanagement_v1/classes.rb, line 1927 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @rollouts = args[:rollouts] if args.key?(:rollouts) end