@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
52 lines (51 loc) • 1.44 kB
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.
*/
import { ResourceToBeLinked } from './resource-to-be-linked';
import { ServiceInitialState } from './service-initial-state';
import { ServiceType } from './service-type';
/**
*
* @export
* @interface ServiceEnvironmentCreate
*/
export interface ServiceEnvironmentCreate {
/**
* The resources to be linked with this resource
* @type {Array<ResourceToBeLinked>}
* @memberof ServiceEnvironmentCreate
*/
linked_resources?: Array<ResourceToBeLinked>;
/**
* Tells if the service should start automatically on operating system boot.
* @type {boolean}
* @memberof ServiceEnvironmentCreate
*/
auto_start?: boolean;
/**
*
* @type {ServiceInitialState}
* @memberof ServiceEnvironmentCreate
*/
initial_state?: ServiceInitialState;
/**
*
* @type {ServiceType}
* @memberof ServiceEnvironmentCreate
*/
type: ServiceType;
/**
* The service version to be installed. Must be at least 1 character. Must not be greater than 30 characters.
* @type {string}
* @memberof ServiceEnvironmentCreate
*/
version: string;
}