UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 473 B
import { Network } from './createInput/Network'; import { ListenerCreate } from './ListenerCreate'; /** Create a loadbalancer */ export interface CreateInput { /** Loadbalancer flavor id */ flavorId: string; /** Listeners to create with the loadbalancer */ listeners: ListenerCreate[]; /** Name of the member */ name: string; /** Network information to create the loadbalancer */ network: Network; } //# sourceMappingURL=CreateInput.d.ts.map