Class: Google::Apis::GkehubV1alpha::ListRolloutSequencesResponse
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1alpha::ListRolloutSequencesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1alpha/classes.rb,
lib/google/apis/gkehub_v1alpha/representations.rb,
lib/google/apis/gkehub_v1alpha/representations.rb
Overview
Response message for listing rollout sequences.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#rollout_sequences ⇒ Array<Google::Apis::GkehubV1alpha::RolloutSequence>
The rollout sequences from the specified parent resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRolloutSequencesResponse
constructor
A new instance of ListRolloutSequencesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRolloutSequencesResponse
Returns a new instance of ListRolloutSequencesResponse.
4238 4239 4240 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4238 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4231 4232 4233 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4231 def next_page_token @next_page_token end |
#rollout_sequences ⇒ Array<Google::Apis::GkehubV1alpha::RolloutSequence>
The rollout sequences from the specified parent resource.
Corresponds to the JSON property rolloutSequences
4236 4237 4238 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4236 def rollout_sequences @rollout_sequences end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4243 4244 4245 4246 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4243 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @rollout_sequences = args[:rollout_sequences] if args.key?(:rollout_sequences) end |