Class MergeCertificateOptions
- java.lang.Object
-
- com.azure.security.keyvault.certificates.models.MergeCertificateOptions
-
public final class MergeCertificateOptions extends Object
Represents Merge Certificate Configuration to merge certificates in key vault.
-
-
Constructor Summary
Constructors Constructor Description MergeCertificateOptions(String name, List<byte[]> x509Certificates)Creates a new MergeCertificationOptions instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Get the certificate name.Map<String,String>getTags()Get the tags value.List<byte[]>getX509Certificates()Get the certificate or certificate chain to merge.BooleanisEnabled()Get the enabled status.MergeCertificateOptionssetEnabled(Boolean enabled)Set the enabled status.MergeCertificateOptionssetTags(Map<String,String> tags)Set the tags to be associated with the secret.
-
-
-
Method Detail
-
setTags
public MergeCertificateOptions setTags(Map<String,String> tags)
Set the tags to be associated with the secret.- Parameters:
tags- The tags to set- Returns:
- the MergeCertificateOptions object itself.
-
setEnabled
public MergeCertificateOptions setEnabled(Boolean enabled)
Set the enabled status.- Parameters:
enabled- The enabled status to set.- Returns:
- the MergeCertificateOptions object itself.
-
isEnabled
public Boolean isEnabled()
Get the enabled status.- Returns:
- the enabled status
-
getName
public String getName()
Get the certificate name.- Returns:
- the certificate name.
-
getX509Certificates
public List<byte[]> getX509Certificates()
Get the certificate or certificate chain to merge.- Returns:
- the x509 certficiates.
-
-