class Google::Apis::GkehubV1::ListMembershipsResponse

Response message for the `GkeHub.ListMemberships` method.

Attributes

next_page_token[RW]

A token to request the next page of resources from the `ListMemberships` method. The value of an empty string means that there are no more resources to return. Corresponds to the JSON property `nextPageToken` @return [String]

resources[RW]

The list of matching Memberships. Corresponds to the JSON property `resources` @return [Array<Google::Apis::GkehubV1::Membership>]

unreachable[RW]

List of locations that could not be reached while fetching this list. Corresponds to the JSON property `unreachable` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gkehub_v1/classes.rb, line 1488
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/gkehub_v1/classes.rb, line 1493
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @resources = args[:resources] if args.key?(:resources)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end