import * as $dara from '@darabonba/typescript'; export declare class HealthCheckConfig extends $dara.Model { /** * @remarks * The number of consecutive failed health checks before the container is considered unhealthy */ failureThreshold?: number; /** * @remarks * The URL address for the HTTP GET request used in health checks */ httpGetUrl?: string; /** * @remarks * The delay time (in seconds) after the container starts before the first health check is executed */ initialDelaySeconds?: number; /** * @remarks * The time interval (in seconds) between health checks */ periodSeconds?: number; /** * @remarks * The number of consecutive successful health checks required before the container is considered healthy */ successThreshold?: number; /** * @remarks * The timeout duration (in seconds) for health checks */ timeoutSeconds?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }