UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

22 lines (18 loc) 483 B
import { IHealth } from '@spinnaker/core'; import { ITargetGroup } from '.'; export interface ITencentcloudHealth extends IHealth { targetGroups: ITargetGroup[]; } export interface ITencentcloudHealthCheck { healthSwitch: number; timeOut: number; intervalTime: number; healthNum: number; unHealthNum: number; httpCode?: number; httpCheckPath?: string; httpCheckDomain?: string; httpCheckMethod?: string; showAdvancedSetting: boolean; [key: string]: any; }