import * as $dara from '@darabonba/typescript'; export declare class ListIntegrationRequest extends $dara.Model { /** * @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 * * This parameter is required. * * @example * CLOUD_MONITOR */ integrationProductType?: string; /** * @remarks * Specifies whether to display the details of each alert integration: * * * true * * false * * @example * true */ isDetail?: boolean; /** * @remarks * The number of the page to return. * * This parameter is required. * * @example * 1 */ page?: number; /** * @remarks * The number of alert integrations to return on each page. * * This parameter is required. * * @example * 10 */ size?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }