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 com.google.protobuf.ByteStringgetIdTokens(int index)A list of service account OpenID Connect ID tokens identifying which service account identities should be included in the claims_token.intgetIdTokensCount()A list of service account OpenID Connect ID tokens identifying which service account identities should be included in the claims_token.List<com.google.protobuf.ByteString>getIdTokensList()A list of service account OpenID Connect ID tokens identifying which service account identities should be included in the claims_token.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIdTokensList
List<com.google.protobuf.ByteString> getIdTokensList()
A list of service account OpenID Connect ID tokens identifying which service account identities should be included in the claims_token. These can be generated by calling `serviceAccounts.generateIdToken`. The Challenge.name must be used as the `audience` parameter, and the `includeEmail` parameter must be `true`. --
repeated bytes id_tokens = 1;- Returns:
- A list containing the idTokens.
-
getIdTokensCount
int getIdTokensCount()
A list of service account OpenID Connect ID tokens identifying which service account identities should be included in the claims_token. These can be generated by calling `serviceAccounts.generateIdToken`. The Challenge.name must be used as the `audience` parameter, and the `includeEmail` parameter must be `true`. --
repeated bytes id_tokens = 1;- Returns:
- The count of idTokens.
-
getIdTokens
com.google.protobuf.ByteString getIdTokens(int index)
A list of service account OpenID Connect ID tokens identifying which service account identities should be included in the claims_token. These can be generated by calling `serviceAccounts.generateIdToken`. The Challenge.name must be used as the `audience` parameter, and the `includeEmail` parameter must be `true`. --
repeated bytes id_tokens = 1;- Parameters:
index- The index of the element to return.- Returns:
- The idTokens at the given index.
-
-