@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
96 lines (95 loc) • 2.46 kB
TypeScript
/**
* 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 { ActionRelation } from './action-relation';
import { SslCertificateIssuer } from './ssl-certificate-issuer';
import { SslCertificateType } from './ssl-certificate-type';
import { SslCertificateValidationLevel } from './ssl-certificate-validation-level';
import { UserRelation } from './user-relation';
/**
*
* @export
* @interface SslCertificate
*/
export interface SslCertificate {
/**
* The unique ID of the given SSL certificate
* @type {number}
* @memberof SslCertificate
*/
id: number;
/**
* The name given to SSL certificate
* @type {string}
* @memberof SslCertificate
*/
name: string;
/**
*
* @type {SslCertificateType}
* @memberof SslCertificate
*/
type: SslCertificateType;
/**
*
* @type {SslCertificateIssuer}
* @memberof SslCertificate
*/
issuer: SslCertificateIssuer;
/**
*
* @type {SslCertificateValidationLevel}
* @memberof SslCertificate
*/
validation_level: SslCertificateValidationLevel;
/**
* Tells if the certificate is active for all linked servers and applications
* @type {boolean}
* @memberof SslCertificate
*/
active: boolean;
/**
*
* @type {UserRelation}
* @memberof SslCertificate
*/
created_by_user: UserRelation;
/**
*
* @type {ActionRelation}
* @memberof SslCertificate
*/
last_action: ActionRelation | null;
/**
* The date and time when this certificate will no longer be valid, down to minute precision
* @type {string}
* @memberof SslCertificate
*/
expires_at: string | null;
/**
* The date and time when this certificate was renewed for the last time
* @type {string}
* @memberof SslCertificate
*/
last_renewed_at: string | null;
/**
* The date and time when the record was created
* @type {string}
* @memberof SslCertificate
*/
created_at: string;
/**
* The date and time when the record was last updated
* @type {string}
* @memberof SslCertificate
*/
updated_at: string;
}