import * as $dara from '@darabonba/typescript'; export declare class InstallCmsExporterRequest extends $dara.Model { /** * @remarks * The ID of the cluster. * * This parameter is required. * * @example * cc7a37ee31aea4ed1a059eff8034b**** */ clusterId?: string; /** * @remarks * The cloud services that you want to monitor. The CmsArgs parameter is the startup parameter of the cms-exporter collector. Separate multiple cloud services with number signs (`#`). * * @example * hologres#cen */ cmsArgs?: string; /** * @remarks * The recently monitored cloud services. Separate multiple cloud services with number signs (`#`). * * @example * hologres#cen */ directArgs?: string; /** * @remarks * Specifies whether to collect the aliyun tags attached to each cloud service. Default value: false. * * @example * false */ enableTag?: boolean; /** * @remarks * The ID of the region. * * This parameter is required. * * @example * cn-beijing */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }