Package com.google.iam.admin.v1
Interface ListServiceAccountsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListServiceAccountsResponse
,ListServiceAccountsResponse.Builder
public interface ListServiceAccountsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceAccount
getAccounts(int index)
The list of matching service accounts.int
getAccountsCount()
The list of matching service accounts.List<ServiceAccount>
getAccountsList()
The list of matching service accounts.ServiceAccountOrBuilder
getAccountsOrBuilder(int index)
The list of matching service accounts.List<? extends ServiceAccountOrBuilder>
getAccountsOrBuilderList()
The list of matching service accounts.String
getNextPageToken()
To retrieve the next page of results, set [ListServiceAccountsRequest.page_token][google.iam.admin.v1.ListServiceAccountsRequest.page_token] to this value.com.google.protobuf.ByteString
getNextPageTokenBytes()
To retrieve the next page of results, set [ListServiceAccountsRequest.page_token][google.iam.admin.v1.ListServiceAccountsRequest.page_token] to this value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAccountsList
List<ServiceAccount> getAccountsList()
The list of matching service accounts.
repeated .google.iam.admin.v1.ServiceAccount accounts = 1;
-
getAccounts
ServiceAccount getAccounts(int index)
The list of matching service accounts.
repeated .google.iam.admin.v1.ServiceAccount accounts = 1;
-
getAccountsCount
int getAccountsCount()
The list of matching service accounts.
repeated .google.iam.admin.v1.ServiceAccount accounts = 1;
-
getAccountsOrBuilderList
List<? extends ServiceAccountOrBuilder> getAccountsOrBuilderList()
The list of matching service accounts.
repeated .google.iam.admin.v1.ServiceAccount accounts = 1;
-
getAccountsOrBuilder
ServiceAccountOrBuilder getAccountsOrBuilder(int index)
The list of matching service accounts.
repeated .google.iam.admin.v1.ServiceAccount accounts = 1;
-
getNextPageToken
String getNextPageToken()
To retrieve the next page of results, set [ListServiceAccountsRequest.page_token][google.iam.admin.v1.ListServiceAccountsRequest.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 [ListServiceAccountsRequest.page_token][google.iam.admin.v1.ListServiceAccountsRequest.page_token] to this value.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-