Interface GetServiceAccountsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GetServiceAccountsResponse,GetServiceAccountsResponse.Builder
@Generated(value="protoc", comments="annotations:GetServiceAccountsResponseOrBuilder.java.pb.meta") public interface GetServiceAccountsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetNextPageToken()The next page token, set if there is another page.com.google.protobuf.ByteStringgetNextPageTokenBytes()The next page token, set if there is another page.ServiceAccountgetServiceAccount(int index)The list of service accounts in ascending ID order.intgetServiceAccountCount()The list of service accounts in ascending ID order.java.util.List<ServiceAccount>getServiceAccountList()The list of service accounts in ascending ID order.ServiceAccountOrBuildergetServiceAccountOrBuilder(int index)The list of service accounts in ascending ID order.java.util.List<? extends ServiceAccountOrBuilder>getServiceAccountOrBuilderList()The list of service accounts in ascending ID order.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServiceAccountList
java.util.List<ServiceAccount> getServiceAccountList()
The list of service accounts in ascending ID order.
repeated .temporal.api.cloud.identity.v1.ServiceAccount service_account = 1;
-
getServiceAccount
ServiceAccount getServiceAccount(int index)
The list of service accounts in ascending ID order.
repeated .temporal.api.cloud.identity.v1.ServiceAccount service_account = 1;
-
getServiceAccountCount
int getServiceAccountCount()
The list of service accounts in ascending ID order.
repeated .temporal.api.cloud.identity.v1.ServiceAccount service_account = 1;
-
getServiceAccountOrBuilderList
java.util.List<? extends ServiceAccountOrBuilder> getServiceAccountOrBuilderList()
The list of service accounts in ascending ID order.
repeated .temporal.api.cloud.identity.v1.ServiceAccount service_account = 1;
-
getServiceAccountOrBuilder
ServiceAccountOrBuilder getServiceAccountOrBuilder(int index)
The list of service accounts in ascending ID order.
repeated .temporal.api.cloud.identity.v1.ServiceAccount service_account = 1;
-
getNextPageToken
java.lang.String getNextPageToken()
The next page token, set if there is another page.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The next page token, set if there is another page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-