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.



4267
4268
4269
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4267

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)


4260
4261
4262
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4260

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



4265
4266
4267
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4265

def rollout_sequences
  @rollout_sequences
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4272
4273
4274
4275
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 4272

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