import * as $dara from '@darabonba/typescript'; export declare class QueryReleaseMetricRequest extends $dara.Model { /** * @remarks * The ID of the change order. * * This parameter is required. * * @example * a341a2f2-ed07-4257-aae9-dfb1be****** */ changeOrderId?: string; /** * @remarks * The time when the change order was created. * * @example * 1634005438000 */ createTime?: number; /** * @remarks * The type of the metric that you want to query. * * @example * SystemContrast */ metricType?: string; /** * @remarks * The ID of the Enterprise Distributed Application Service (EDAS) or Kubernetes application. * * This parameter is required. * * @example * 8b46d03f-5947-449d-90fd-3a96c2****** */ pid?: string; /** * @remarks * This parameter is not in use. * * @example * null */ proxyUserId?: string; /** * @remarks * The end time of the version release. * * This parameter is required. * * @example * 1632798718632 */ releaseEndTime?: number; /** * @remarks * The start time of the version release. * * This parameter is required. * * @example * 1632798686692 */ releaseStartTime?: number; /** * @remarks * The service that you want to query. * * @example * clothservice */ service?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }