UNPKG

devopness-sdk-js

Version:

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

38 lines (37 loc) 1 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 { BlueprintItem } from './blueprint-item'; /** * * @export * @interface ServerBlueprint */ export interface ServerBlueprint { /** * The list of databases that must be installed on the server * @type {Array<BlueprintItem>} * @memberof ServerBlueprint */ databases?: Array<BlueprintItem>; /** * The list of tools that must be made available on the server * @type {Array<BlueprintItem>} * @memberof ServerBlueprint */ providers: Array<BlueprintItem>; /** * The list of tools that must be made available on the server * @type {Array<BlueprintItem>} * @memberof ServerBlueprint */ tools?: Array<BlueprintItem>; }