UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 657 B
/** Available farm probes options */ export interface FarmAvailableProbe { /** List of possible probe result checkers for this type of probe */ matches: string[]; /** List of available HTTP method, if available */ method?: string[]; /** List of matches operators that accept the negate option for this type of probe */ negatableMatches: string[]; /** True is this probe type supports a custom port */ port: boolean; /** Probe protocol name. See probe "type" field in the farm probe */ type: string; /** True is this probe type supports a URL */ url: boolean; } //# sourceMappingURL=FarmAvailableProbe.d.ts.map