Class AzureKeyVaultSecret
- java.lang.Object
-
- hudson.model.AbstractDescribableImpl<AzureKeyVaultSecret>
-
- org.jenkinsci.plugins.azurekeyvaultplugin.AzureKeyVaultSecret
-
- All Implemented Interfaces:
Describable<AzureKeyVaultSecret>
,Serializable
public class AzureKeyVaultSecret extends AbstractDescribableImpl<AzureKeyVaultSecret> implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AzureKeyVaultSecret.DescriptorImpl
-
Field Summary
Fields Modifier and Type Field Description static String
typeCertificate
static String
typeSecret
-
Constructor Summary
Constructors Constructor Description AzureKeyVaultSecret(String secretType, String name, String envVariable)
AzureKeyVaultSecret(String secretType, String name, String version, String envVariable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEnvVariable()
String
getName()
String
getSecretType()
String
getVersion()
boolean
isCertificate()
boolean
isPassword()
void
setVersion(String version)
-
Methods inherited from class hudson.model.AbstractDescribableImpl
getDescriptor
-
-
-
-
Field Detail
-
typeSecret
public static final String typeSecret
- See Also:
- Constant Field Values
-
typeCertificate
public static final String typeCertificate
- See Also:
- Constant Field Values
-
-
Method Detail
-
getSecretType
public String getSecretType()
-
getName
public String getName()
-
getVersion
public String getVersion()
-
setVersion
@DataBoundSetter public void setVersion(String version)
-
getEnvVariable
public String getEnvVariable()
-
isPassword
public boolean isPassword()
-
isCertificate
public boolean isCertificate()
-
-