import * as $dara from '@darabonba/typescript'; export declare class ListIntegrationResponseBodyPageInfoIntegrationsIntegrationDetail extends $dara.Model { /** * @remarks * Indicates whether alert events are automatically cleared. Valid values: * * * true (default) * * false * * @example * true */ autoRecover?: boolean; /** * @remarks * The description of the alert integration. * * @example * Test */ description?: string; /** * @remarks * The fields whose values are deduplicated. * * @example * LABEL.alertname::LABEL.severity */ duplicateKey?: string; /** * @remarks * The extended mapped fields of the alert source. */ extendedFieldRedefineRules?: { [key: string]: any; }[]; /** * @remarks * The predefined mapped fields of the alert source. */ fieldRedefineRules?: { [key: string]: any; }[]; /** * @remarks * The field for clearing alert events. The system queries alert events based on the field of alert clearing events and clears the alert events. * * > Only the Log Service alert integration supports the parameter. * * @example * $.status */ initiativeRecoverField?: string; /** * @remarks * The value of the field for clearing alert events. The system queries alert events based on the field of alert clearing events and clears the alert events. * * > Only the Log Service alert integration supports the parameter. * * @example * ok */ initiativeRecoverValue?: string; /** * @remarks * The time when alert events are automatically cleared. Unit: seconds. Default value: 300. * * @example * 300 */ recoverTime?: number; /** * @remarks * The total number of alert events and the number of abnormal alert events in the last hour. */ stat?: number[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListIntegrationResponseBodyPageInfoIntegrations extends $dara.Model { /** * @remarks * The endpoint of the alert integration. * * @example * https://alerts.aliyuncs.com/api/v1/integrations/custom/ymQBN****** */ apiEndpoint?: string; /** * @remarks * The time when the alert integration was created. * * @example * 2022-06-18 */ createTime?: string; /** * @remarks * The information about the alert events. */ integrationDetail?: ListIntegrationResponseBodyPageInfoIntegrationsIntegrationDetail; /** * @remarks * The ID of the alert integration. * * @example * 1234 */ integrationId?: number; /** * @remarks * The name of the alert integration. * * @example * CloudMonitor integration */ integrationName?: string; /** * @remarks * The type of the alert integration. Valid values: * * * CLOUD_MONITOR: CloudMonitor * * LOG_SERVICE: Log Service * * @example * CLOUD_MONITOR */ integrationProductType?: string; /** * @remarks * The activity of the alert integration * * @example * ready */ liveness?: string; /** * @remarks * The authentication token of the alert integration. * * @example * ymQBN****** */ shortToken?: string; /** * @remarks * Indicates whether the alert integration was enabled. Valid values: * * * true * * false * * @example * true */ state?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListIntegrationResponseBodyPageInfo extends $dara.Model { /** * @remarks * The information about each alert integration. */ integrations?: ListIntegrationResponseBodyPageInfoIntegrations[]; /** * @remarks * The page number of the returned page. * * @example * 1 */ page?: number; /** * @remarks * The number of alert integrations returned per page. * * @example * 10 */ size?: number; /** * @remarks * The total number of alert integrations. * * @example * 1 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListIntegrationResponseBody extends $dara.Model { /** * @remarks * The pagination information. */ pageInfo?: ListIntegrationResponseBodyPageInfo; /** * @remarks * The request ID. * * @example * 34ED024E-9E31-434A-9E4E-D9D15C3**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }