class Google::Apis::GkehubV1beta1::ListMembershipsResponse
Response message for the `GkeHubMembershipService.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::GkehubV1beta1::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_v1beta1/classes.rb, line 605 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_v1beta1/classes.rb, line 610 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