Class MergeCertificateOptions

java.lang.Object
com.azure.security.keyvault.certificates.models.MergeCertificateOptions

public final class MergeCertificateOptions extends Object
Represents the configuration used to merge a certificate in the key vault.
  • Constructor Details

    • MergeCertificateOptions

      public MergeCertificateOptions(String name, List<byte[]> x509Certificates)
      Creates a instance of MergeCertificateOptions.
      Parameters:
      name - The name of the certificate.
      x509Certificates - The certificate or the certificate chain to merge.
  • Method Details

    • getName

      public String getName()
      Get the name of the certificate.
      Returns:
      The name of the certificate.
    • getX509Certificates

      public List<byte[]> getX509Certificates()
      Get the certificate or certificate chain to merge.
      Returns:
      The certificate or certificate chain to merge.
    • isEnabled

      public Boolean isEnabled()
      Get a value indicating whether the certificate is enabled.
      Returns:
      The enabled status.
    • setEnabled

      public MergeCertificateOptions setEnabled(Boolean enabled)
      Set the enabled status.
      Parameters:
      enabled - The enabled status to set.
      Returns:
      The updated MergeCertificateOptions object.
    • getTags

      public Map<String,String> getTags()
      Get the tags value.
      Returns:
      the tags value
    • 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 updated MergeCertificateOptions object.