@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
20 lines (19 loc) • 859 B
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.
*/
/**
* 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}
*/
export declare enum SubnetType {
Public = "public"
}