Class MergeCertificateOptions
java.lang.Object
com.azure.security.keyvault.certificates.models.MergeCertificateOptions
Represents the configuration used to merge a certificate in the key vault.
-
Constructor Summary
ConstructorsConstructorDescriptionMergeCertificateOptions(String name, List<byte[]> x509Certificates) Creates a instance ofMergeCertificateOptions. -
Method Summary
Modifier and TypeMethodDescriptiongetName()Get the name of the certificate.getTags()Get the tags value.List<byte[]> Get the certificate or certificate chain to merge.Get a value indicating whether the certificate is enabled.setEnabled(Boolean enabled) Set the enabled status.Set the tags to be associated with the secret.
-
Constructor Details
-
MergeCertificateOptions
Creates a instance ofMergeCertificateOptions.- Parameters:
name- The name of the certificate.x509Certificates- The certificate or the certificate chain to merge.
-
-
Method Details
-
getName
-
getX509Certificates
Get the certificate or certificate chain to merge.- Returns:
- The certificate or certificate chain to merge.
-
isEnabled
Get a value indicating whether the certificate is enabled.- Returns:
- The enabled status.
-
setEnabled
Set the enabled status.- Parameters:
enabled- The enabled status to set.- Returns:
- The updated
MergeCertificateOptionsobject.
-
getTags
-
setTags
Set the tags to be associated with the secret.- Parameters:
tags- The tags to set- Returns:
- The updated
MergeCertificateOptionsobject.
-