node-ovh-ts
Version:
OVH API wrapper library for TypeScript
21 lines (18 loc) • 941 B
TypeScript
import { DbaasLogsStreamAlertConditionConditionTypeEnum } from './DbaasLogsStreamAlertConditionConditionTypeEnum.js';
import { DbaasLogsStreamAlertConditionConstraintTypeEnum } from './DbaasLogsStreamAlertConditionConstraintTypeEnum.js';
import { DbaasLogsStreamAlertConditionThresholdTypeEnum } from './DbaasLogsStreamAlertConditionThresholdTypeEnum.js';
type DbaasLogsOutputGraylogStreamAlertUpdate = {
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 { DbaasLogsOutputGraylogStreamAlertUpdate };