Package com.google.cloud.gkehub.v1alpha2
Interface ListMembershipsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMembershipsResponse
,ListMembershipsResponse.Builder
public interface ListMembershipsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token to request the next page of resources from the `ListMemberships` method.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to request the next page of resources from the `ListMemberships` method.Membership
getResources(int index)
The list of matching Memberships.int
getResourcesCount()
The list of matching Memberships.List<Membership>
getResourcesList()
The list of matching Memberships.MembershipOrBuilder
getResourcesOrBuilder(int index)
The list of matching Memberships.List<? extends MembershipOrBuilder>
getResourcesOrBuilderList()
The list of matching Memberships.String
getUnreachable(int index)
List of locations that could not be reached while fetching this list.com.google.protobuf.ByteString
getUnreachableBytes(int index)
List of locations that could not be reached while fetching this list.int
getUnreachableCount()
List of locations that could not be reached while fetching this list.List<String>
getUnreachableList()
List of locations that could not be reached while fetching this list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourcesList
List<Membership> getResourcesList()
The list of matching Memberships.
repeated .google.cloud.gkehub.v1alpha2.Membership resources = 1;
-
getResources
Membership getResources(int index)
The list of matching Memberships.
repeated .google.cloud.gkehub.v1alpha2.Membership resources = 1;
-
getResourcesCount
int getResourcesCount()
The list of matching Memberships.
repeated .google.cloud.gkehub.v1alpha2.Membership resources = 1;
-
getResourcesOrBuilderList
List<? extends MembershipOrBuilder> getResourcesOrBuilderList()
The list of matching Memberships.
repeated .google.cloud.gkehub.v1alpha2.Membership resources = 1;
-
getResourcesOrBuilder
MembershipOrBuilder getResourcesOrBuilder(int index)
The list of matching Memberships.
repeated .google.cloud.gkehub.v1alpha2.Membership resources = 1;
-
getNextPageToken
String getNextPageToken()
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.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
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.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
List of locations that could not be reached while fetching this list.
repeated string unreachable = 3;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
List of locations that could not be reached while fetching this list.
repeated string unreachable = 3;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
List of locations that could not be reached while fetching this list.
repeated string unreachable = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
List of locations that could not be reached while fetching this list.
repeated string unreachable = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-