import * as $dara from '@darabonba/typescript'; export declare class CreateEnvPodMonitorResponseBodyData extends $dara.Model { /** * @remarks * Indicates whether targets are matched. * * @example * Match successful. */ matchedMsg?: string; /** * @remarks * The number of matched targets. * * @example * 1 */ matchedTargetCount?: string; /** * @remarks * The namespace. * * @example * arms-prom */ namespace?: string; /** * @remarks * The name of the created PodMonitor. * * @example * arms-admin-pm1 */ podMonitorName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateEnvPodMonitorResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: number; /** * @remarks * The returned result, which indicates whether the operation was successful. */ data?: CreateEnvPodMonitorResponseBodyData; /** * @remarks * The returned message. * * @example * message */ message?: string; /** * @remarks * The request ID. * * @example * 78901766-3806-4E96-8E47-CFEF59E4**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }