Uses of Class
io.helidon.integrations.vault.secrets.pki.PkiFormat
-
Packages that use PkiFormat Package Description io.helidon.integrations.vault.secrets.pki Vault's PKI Secrets Engine support. -
-
Uses of PkiFormat in io.helidon.integrations.vault.secrets.pki
Methods in io.helidon.integrations.vault.secrets.pki that return PkiFormat Modifier and Type Method Description PkiFormat
CaCertificateGet.Request. format()
Requested format.PkiFormat
CertificateGet.Request. format()
Requested format.PkiFormat
CrlGet.Request. format()
Configured format.static PkiFormat
PkiFormat. valueOf(String name)
Returns the enum constant of this type with the specified name.static PkiFormat[]
PkiFormat. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.helidon.integrations.vault.secrets.pki with parameters of type PkiFormat Modifier and Type Method Description default byte[]
PkiSecrets. caCertificate(PkiFormat format)
Certification authority certificate in raw bytes.default Single<byte[]>
PkiSecretsRx. caCertificate(PkiFormat format)
Certification authority certificate in raw bytes.default Optional<byte[]>
PkiSecrets. certificate(String serialNumber, PkiFormat format)
Certificate in raw bytes, currently onlyPEM
is supported.default Single<Optional<byte[]>>
PkiSecretsRx. certificate(String serialNumber, PkiFormat format)
Certificate in raw bytes, currently onlyPEM
is supported.default byte[]
PkiSecrets. crl(PkiFormat format)
Certificate revocation list in raw bytes.default Single<byte[]>
PkiSecretsRx. crl(PkiFormat format)
Certificate revocation list in raw bytes.CaCertificateGet.Request
CaCertificateGet.Request. format(PkiFormat format)
Format of the certificate to get.CertificateGet.Request
CertificateGet.Request. format(PkiFormat format)
Format of the certificate to get.CrlGet.Request
CrlGet.Request. format(PkiFormat format)
Format of the CRL.
-