io.quarkus.vault.runtime.client.dto.pki.VaultPKIGenerateCertificateData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault-model Show documentation
Show all versions of quarkus-vault-model Show documentation
Hashicorp Vault API model classes
The newest version!
package io.quarkus.vault.runtime.client.dto.pki;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultPKIGenerateCertificateData implements VaultModel {
public String certificate;
@JsonProperty("issuing_ca")
public String issuingCA;
@JsonProperty("ca_chain")
public List caChain;
@JsonProperty("private_key")
public String privateKey;
@JsonProperty("private_key_type")
public String privateKeyType;
@JsonProperty("serial_number")
public String serialNumber;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy