@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 570 B
TypeScript
import { Backend } from './Backend';
import { Frontend } from './Frontend';
import { Networking } from './configuration/networking/Networking';
/** A load balancer configuration */
export interface Configuration {
/** List of backends */
backends: Backend[];
/** List of certificate ID */
certificates: string[];
/** List of frontends */
frontends: Frontend[];
/** networking configuration */
networking: Networking;
/** Identifier and version of the configuration */
version: number;
}
//# sourceMappingURL=Configuration.d.ts.map