Package s2.v1alpha
Interface ListAccessTokensRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListAccessTokensRequest,ListAccessTokensRequest.Builder
public interface ListAccessTokensRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetLimit()Number of results, up to a maximum of 1000.java.lang.StringgetPrefix()List access tokens that begin with this prefix.com.google.protobuf.ByteStringgetPrefixBytes()List access tokens that begin with this prefix.java.lang.StringgetStartAfter()Only return access tokens that lexicographically start after this ID.com.google.protobuf.ByteStringgetStartAfterBytes()Only return access tokens that lexicographically start after this ID.booleanhasLimit()Number of results, up to a maximum of 1000.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPrefix
java.lang.String getPrefix()
List access tokens that begin with this prefix.
string prefix = 1;- Returns:
- The prefix.
-
getPrefixBytes
com.google.protobuf.ByteString getPrefixBytes()
List access tokens that begin with this prefix.
string prefix = 1;- Returns:
- The bytes for prefix.
-
getStartAfter
java.lang.String getStartAfter()
Only return access tokens that lexicographically start after this ID.
string start_after = 2;- Returns:
- The startAfter.
-
getStartAfterBytes
com.google.protobuf.ByteString getStartAfterBytes()
Only return access tokens that lexicographically start after this ID.
string start_after = 2;- Returns:
- The bytes for startAfter.
-
hasLimit
boolean hasLimit()
Number of results, up to a maximum of 1000.
optional uint64 limit = 3;- Returns:
- Whether the limit field is set.
-
getLimit
long getLimit()
Number of results, up to a maximum of 1000.
optional uint64 limit = 3;- Returns:
- The limit.
-
-