Enum Class VaultEnvironmentProperties.AuthenticationMethod
java.lang.Object
java.lang.Enum<VaultEnvironmentProperties.AuthenticationMethod>
org.springframework.cloud.config.server.environment.VaultEnvironmentProperties.AuthenticationMethod
- All Implemented Interfaces:
Serializable, Comparable<VaultEnvironmentProperties.AuthenticationMethod>, Constable
- Enclosing class:
VaultEnvironmentProperties
public static enum VaultEnvironmentProperties.AuthenticationMethod
extends Enum<VaultEnvironmentProperties.AuthenticationMethod>
- Author:
- Dylan Roberts, Haroun Pacquee, Scott Frederick
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionVault AppRole machine authentication.Amazon Web Services Compute authentication.Amazon Web Services IAM authentication.Azure Cloud MSI authentication.TLS certificate authentication.Cubbyhole token authentication.Google Cloud Compute authentication.Google Cloud IAM authentication.Kubernetes service account token authentication.Cloud Foundry instance identity certificate authentication.Static token authentication. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
APPROLE
Vault AppRole machine authentication. -
AWS_EC2
Amazon Web Services Compute authentication. -
AWS_IAM
Amazon Web Services IAM authentication. -
AZURE_MSI
Azure Cloud MSI authentication. -
CERT
TLS certificate authentication. -
CUBBYHOLE
Cubbyhole token authentication. -
GCP_GCE
Google Cloud Compute authentication. -
GCP_IAM
Google Cloud IAM authentication. -
KUBERNETES
Kubernetes service account token authentication. -
PCF
Cloud Foundry instance identity certificate authentication. -
TOKEN
Static token authentication.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-