@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
33 lines (32 loc) • 844 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.
*/
import { StaticVirtualHostType } from './static-virtual-host-type';
import { VariableTargets } from './variable-targets';
/**
*
* @export
* @interface VirtualHostOptions
*/
export interface VirtualHostOptions {
/**
* The list of VariableTarget
* @type {Array<VariableTargets>}
* @memberof VirtualHostOptions
*/
variable_targets: Array<VariableTargets>;
/**
*
* @type {Array<StaticVirtualHostType>}
* @memberof VirtualHostOptions
*/
virtual_host_types: Array<StaticVirtualHostType>;
}