@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
27 lines (26 loc) • 1.07 kB
JavaScript
/* eslint-disable */
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SslCertificateValidationLevel = void 0;
/**
* The level of validation applied when issuing the certificate. This can be one out of the three validation levels conforming to public key certificates standards: `DV (Domain Validation)`, `OV (Organization validation)` or `EV (Extended Validation)`
* @export
* @enum {string}
*/
var SslCertificateValidationLevel;
(function (SslCertificateValidationLevel) {
SslCertificateValidationLevel["DV"] = "DV";
SslCertificateValidationLevel["OV"] = "OV";
SslCertificateValidationLevel["EV"] = "EV";
})(SslCertificateValidationLevel || (exports.SslCertificateValidationLevel = SslCertificateValidationLevel = {}));
;