Class: Google::Apis::GkehubV1beta::ListRolloutsResponse

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 rollouts.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRolloutsResponse

Returns a new instance of ListRolloutsResponse.



4054
4055
4056
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4054

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)


4047
4048
4049
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4047

def next_page_token
  @next_page_token
end

#rolloutsArray<Google::Apis::GkehubV1beta::Rollout>

The rollouts from the specified parent resource. Corresponds to the JSON property rollouts



4052
4053
4054
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4052

def rollouts
  @rollouts
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4059
4060
4061
4062
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 4059

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @rollouts = args[:rollouts] if args.key?(:rollouts)
end