Class: Google::Apis::GkehubV1beta::ListRolloutSequencesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v1beta/classes.rb,
lib/google/apis/gkehub_v1beta/representations.rb,
lib/google/apis/gkehub_v1beta/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.



4025
4026
4027
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4025

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)


4018
4019
4020
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4018

def next_page_token
  @next_page_token
end

#rollout_sequencesArray<Google::Apis::GkehubV1beta::RolloutSequence>

The rollout sequences from the specified parent resource. Corresponds to the JSON property rolloutSequences



4023
4024
4025
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4023

def rollout_sequences
  @rollout_sequences
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4030
4031
4032
4033
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4030

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