Class: Google::Apis::GkehubV1alpha::ListRolloutSequencesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_tokenString

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

Returns:

  • (String)


4231
4232
4233
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4231

def next_page_token
  @next_page_token
end

#rollout_sequencesArray<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