/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { KeyTypeEnum } from './KeyTypeEnum'; /** * CertificateKeyPair Serializer * @export * @interface CertificateKeyPair */ export interface CertificateKeyPair { /** * * @type {string} * @memberof CertificateKeyPair */ readonly pk: string; /** * * @type {string} * @memberof CertificateKeyPair */ name: string; /** * SHA256 fingerprint of the certificate * @type {string} * @memberof CertificateKeyPair */ readonly fingerprintSha256: string | null; /** * SHA1 fingerprint of the certificate * @type {string} * @memberof CertificateKeyPair */ readonly fingerprintSha1: string | null; /** * Certificate expiry date * @type {Date} * @memberof CertificateKeyPair */ readonly certExpiry: Date | null; /** * Certificate subject as RFC4514 string * @type {string} * @memberof CertificateKeyPair */ readonly certSubject: string | null; /** * Show if this keypair has a private key configured or not * @type {boolean} * @memberof CertificateKeyPair */ readonly privateKeyAvailable: boolean; /** * Key algorithm type detected from the certificate's public key * @type {KeyTypeEnum} * @memberof CertificateKeyPair */ readonly keyType: KeyTypeEnum | null; /** * Get URL to download certificate * @type {string} * @memberof CertificateKeyPair */ readonly certificateDownloadUrl: string; /** * Get URL to download private key * @type {string} * @memberof CertificateKeyPair */ readonly privateKeyDownloadUrl: string; /** * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. * @type {string} * @memberof CertificateKeyPair */ readonly managed: string | null; } /** * Check if a given object implements the CertificateKeyPair interface. */ export declare function instanceOfCertificateKeyPair(value: object): value is CertificateKeyPair; export declare function CertificateKeyPairFromJSON(json: any): CertificateKeyPair; export declare function CertificateKeyPairFromJSONTyped(json: any, ignoreDiscriminator: boolean): CertificateKeyPair; export declare function CertificateKeyPairToJSON(json: any): CertificateKeyPair; export declare function CertificateKeyPairToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CertificateKeyPair.d.ts.map