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 Details

    • MergeCertificateOptions

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

    • 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.
    • getTags

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