node-ovh-ts
Version:
OVH API wrapper library for TypeScript
22 lines (19 loc) • 946 B
TypeScript
import { DbaasLogsStreamAlertConditionConditionTypeEnum } from './DbaasLogsStreamAlertConditionConditionTypeEnum.js';
import { DbaasLogsStreamAlertConditionConstraintTypeEnum } from './DbaasLogsStreamAlertConditionConstraintTypeEnum.js';
import { DbaasLogsStreamAlertConditionThresholdTypeEnum } from './DbaasLogsStreamAlertConditionThresholdTypeEnum.js';
type DbaasLogsStreamAlertCondition = {
alertId?: string;
backlog?: number;
conditionType?: DbaasLogsStreamAlertConditionConditionTypeEnum | null;
constraintType?: DbaasLogsStreamAlertConditionConstraintTypeEnum | null;
field?: string | null;
grace?: number;
queryFilter?: string | null;
repeatNotificationsEnabled?: boolean | null;
threshold?: number | null;
thresholdType?: DbaasLogsStreamAlertConditionThresholdTypeEnum | null;
time?: number | null;
title?: string;
value?: string | null;
};
export { DbaasLogsStreamAlertCondition };