/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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. */ /** * CertificateKeyPair Serializer * @export * @interface CertificateKeyPair */ export interface CertificateKeyPair { /** * * @type {string} * @memberof CertificateKeyPair */ readonly pk: string; /** * * @type {string} * @memberof CertificateKeyPair */ name: string; /** * Get certificate Hash (SHA256) * @type {string} * @memberof CertificateKeyPair */ readonly fingerprintSha256: string | null; /** * Get certificate Hash (SHA1) * @type {string} * @memberof CertificateKeyPair */ readonly fingerprintSha1: string | null; /** * Get certificate expiry * @type {Date} * @memberof CertificateKeyPair */ readonly certExpiry: Date | null; /** * Get certificate subject as full rfc4514 * @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; /** * Get the private key's type, if set * @type {string} * @memberof CertificateKeyPair */ readonly privateKeyType: string | 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