@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
25 lines (24 loc) • 1.06 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.SubnetType = void 0;
/**
* The subnet\'s type: `public` or `private`. A `public` subnet is typically used to host resources that have a public IP address and are accessible from the public internet. `Example`: a server hosting an API or web app. A `private` subnet is typically used to host resources that should not be accessible from the public internet, such as database servers or internal applications. A server in a private subnet will not have a public IP address associated to it.
* @export
* @enum {string}
*/
var SubnetType;
(function (SubnetType) {
SubnetType["Public"] = "public";
})(SubnetType || (exports.SubnetType = SubnetType = {}));
;