Package com.google.iam.admin.v1
Interface QueryGrantableRolesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueryGrantableRolesResponse
,QueryGrantableRolesResponse.Builder
public interface QueryGrantableRolesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
To retrieve the next page of results, set `QueryGrantableRolesRequest.page_token` to this value.com.google.protobuf.ByteString
getNextPageTokenBytes()
To retrieve the next page of results, set `QueryGrantableRolesRequest.page_token` to this value.Role
getRoles(int index)
The list of matching roles.int
getRolesCount()
The list of matching roles.List<Role>
getRolesList()
The list of matching roles.RoleOrBuilder
getRolesOrBuilder(int index)
The list of matching roles.List<? extends RoleOrBuilder>
getRolesOrBuilderList()
The list of matching roles.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRolesList
List<Role> getRolesList()
The list of matching roles.
repeated .google.iam.admin.v1.Role roles = 1;
-
getRoles
Role getRoles(int index)
The list of matching roles.
repeated .google.iam.admin.v1.Role roles = 1;
-
getRolesCount
int getRolesCount()
The list of matching roles.
repeated .google.iam.admin.v1.Role roles = 1;
-
getRolesOrBuilderList
List<? extends RoleOrBuilder> getRolesOrBuilderList()
The list of matching roles.
repeated .google.iam.admin.v1.Role roles = 1;
-
getRolesOrBuilder
RoleOrBuilder getRolesOrBuilder(int index)
The list of matching roles.
repeated .google.iam.admin.v1.Role roles = 1;
-
getNextPageToken
String getNextPageToken()
To retrieve the next page of results, set `QueryGrantableRolesRequest.page_token` to this value.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
To retrieve the next page of results, set `QueryGrantableRolesRequest.page_token` to this value.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-