import { ServiceEnum } from './ServiceEnum';
import { StatusEnum } from './StatusEnum';
/** Billing Alert Configuration Update */
export interface AlertingUpdate {
    /** Delay of the alert in seconds */
    delay: number;
    /** @deprecated Email. DEPRECATED: use emails */
    email: string;
    /** Receiver of the alert */
    emails: string[];
    /** Monthly threshold */
    monthlyThreshold: number;
    /** Name of the alert */
    name: string;
    /** Service of the alert */
    service: ServiceEnum;
    /** Status of the alert */
    status: StatusEnum;
}
//# sourceMappingURL=AlertingUpdate.d.ts.map