Class GoogleSecretManagerEnvironmentProperties
- java.lang.Object
-
- org.springframework.cloud.config.server.environment.GoogleSecretManagerEnvironmentProperties
-
- All Implemented Interfaces:
EnvironmentRepositoryProperties
@ConfigurationProperties("spring.cloud.config.server.gcp-secret-manager") public class GoogleSecretManagerEnvironmentProperties extends Object implements EnvironmentRepositoryProperties- Author:
- Jose Maria Alvarez
-
-
Field Summary
Fields Modifier and Type Field Description static StringGOOGLE_METADATA_PROJECT_URLThe metadata URL to get the project ID from.
-
Constructor Summary
Constructors Constructor Description GoogleSecretManagerEnvironmentProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApplicationLabel()intgetOrder()StringgetProfileLabel()StringgetServiceAccount()BooleangetTokenMandatory()IntegergetVersion()voidsetApplicationLabel(String applicationLabel)voidsetOrder(int order)voidsetProfileLabel(String profileLabel)voidsetServiceAccount(String serviceAccount)voidsetTokenMandatory(Boolean tokenMandatory)voidsetVersion(Integer version)
-
-
-
Field Detail
-
GOOGLE_METADATA_PROJECT_URL
public static final String GOOGLE_METADATA_PROJECT_URL
The metadata URL to get the project ID from.- See Also:
- Constant Field Values
-
-
Method Detail
-
setOrder
public void setOrder(int order)
- Specified by:
setOrderin interfaceEnvironmentRepositoryProperties
-
getOrder
public int getOrder()
-
getTokenMandatory
public Boolean getTokenMandatory()
-
setTokenMandatory
public void setTokenMandatory(Boolean tokenMandatory)
-
getApplicationLabel
public String getApplicationLabel()
-
setApplicationLabel
public void setApplicationLabel(String applicationLabel)
-
getProfileLabel
public String getProfileLabel()
-
setProfileLabel
public void setProfileLabel(String profileLabel)
-
getVersion
public Integer getVersion()
-
setVersion
public void setVersion(Integer version)
-
getServiceAccount
public String getServiceAccount()
-
setServiceAccount
public void setServiceAccount(String serviceAccount)
-
-