import * as $dara from '@darabonba/typescript'; export declare class AddPrometheusInstanceRequest extends $dara.Model { /** * @remarks * The name of the Prometheus instance for Remote Write. * * This parameter is required. * * @example * notificationpolicy_test */ name?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The type of the Prometheus instance. Only Prometheus instances for Remote Write is supported. Set the value to RW. * * This parameter is required. * * @example * RW */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }