UNPKG

@devopness/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

89 lines (88 loc) 2.43 kB
/** * devopness API * Devopness API - Painless essential DevOps to everyone * * The version of the OpenAPI document: latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ActionRelationShallow } from './action-relation-shallow'; import { SslCertificateIssuer } from './ssl-certificate-issuer'; import { SslCertificateType } from './ssl-certificate-type'; import { SslCertificateValidationLevel } from './ssl-certificate-validation-level'; /** * * @export * @interface SslCertificateRelation */ export interface SslCertificateRelation { /** * The unique ID of the given SSL certificate * @type {number} * @memberof SslCertificateRelation */ id: number; /** * The name given to SSL certificate * @type {string} * @memberof SslCertificateRelation */ name: string; /** * * @type {SslCertificateType} * @memberof SslCertificateRelation */ type: SslCertificateType; /** * * @type {SslCertificateIssuer} * @memberof SslCertificateRelation */ issuer: SslCertificateIssuer; /** * * @type {SslCertificateValidationLevel} * @memberof SslCertificateRelation */ validation_level: SslCertificateValidationLevel; /** * Tells if the certificate is active for all linked servers and applications * @type {boolean} * @memberof SslCertificateRelation */ active: boolean; /** * * @type {ActionRelationShallow} * @memberof SslCertificateRelation */ last_action?: ActionRelationShallow | null; /** * The date and time when this certificate will no longer be valid, down to minute precision * @type {string} * @memberof SslCertificateRelation */ expires_at: string | null; /** * The date and time when this certificate was renewed for the last time * @type {string} * @memberof SslCertificateRelation */ last_renewed_at: string | null; /** * The date and time when the record was created * @type {string} * @memberof SslCertificateRelation */ created_at?: string; /** * The date and time when the record was last updated * @type {string} * @memberof SslCertificateRelation */ updated_at?: string; }