Interface GcpCredentialsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GcpCredentials
,GcpCredentials.Builder
public interface GcpCredentialsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getServiceAccountIdTokens(int index)
Same as id_tokens, but as a string.com.google.protobuf.ByteString
getServiceAccountIdTokensBytes(int index)
Same as id_tokens, but as a string.int
getServiceAccountIdTokensCount()
Same as id_tokens, but as a string.List<String>
getServiceAccountIdTokensList()
Same as id_tokens, but as a string.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServiceAccountIdTokensList
List<String> getServiceAccountIdTokensList()
Same as id_tokens, but as a string.
repeated string service_account_id_tokens = 2;
- Returns:
- A list containing the serviceAccountIdTokens.
-
getServiceAccountIdTokensCount
int getServiceAccountIdTokensCount()
Same as id_tokens, but as a string.
repeated string service_account_id_tokens = 2;
- Returns:
- The count of serviceAccountIdTokens.
-
getServiceAccountIdTokens
String getServiceAccountIdTokens(int index)
Same as id_tokens, but as a string.
repeated string service_account_id_tokens = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The serviceAccountIdTokens at the given index.
-
getServiceAccountIdTokensBytes
com.google.protobuf.ByteString getServiceAccountIdTokensBytes(int index)
Same as id_tokens, but as a string.
repeated string service_account_id_tokens = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the serviceAccountIdTokens at the given index.
-
-