UNPKG

@thlmenezes/sdk-js

Version:

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

32 lines (31 loc) 1.07 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 { ApiBaseService } from "../../../services/ApiBaseService"; import { ApiResponse } from "../../../common/ApiResponse"; import { SslCertificate } from '../../generated/models'; /** * SSLCertificatesApiService - Auto-generated */ export declare class SSLCertificatesApiService extends ApiBaseService { /** * * @summary Delete a given SSL Certificate * @param {number} sslCertificateId The ID of the ssl certificate. */ deleteSslCertificate(sslCertificateId: number): Promise<ApiResponse<void>>; /** * * @summary Get details of a single SSL certificate * @param {number} sslCertificateId The ID of the ssl certificate. */ getSslCertificate(sslCertificateId: number): Promise<ApiResponse<SslCertificate>>; }