devopness-sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
40 lines (39 loc) • 850 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.
*/
/**
*
* @export
* @interface EnvironmentCreate
*/
export interface EnvironmentCreate {
/**
* The environment\'s name
* @type {string}
* @memberof EnvironmentCreate
*/
name: string;
/**
* The type of the deployment being triggred
* @type {string}
* @memberof EnvironmentCreate
*/
type: EnvironmentCreateTypeEnum;
}
/**
* @export
* @enum {string}
*/
export declare enum EnvironmentCreateTypeEnum {
Testing = "testing",
Staging = "staging",
Production = "production"
}