Files
vue-driven-cloud-storage/backend/node_modules/@alicloud/cms20190101/dist/models/DescribeMetricDataResponseBody.d.ts
237899745 b135987fe8 feat: 添加多项功能和修复
功能新增:
- OSS 存储使用情况显示(文件页面)
- OSS 当日流量统计(阿里云云监控API)
- 分享页面路由修复(/s/xxx 格式支持)

Bug修复:
- 修复分享页面资源路径(相对路径改绝对路径)
- 修复分享码获取逻辑(支持路径格式)
- 修复OSS配额undefined显示问题
- 修复登录流程OSS配置检查
- 修复文件数为null时的显示问题

依赖更新:
- 添加 @alicloud/cms20190101 云监控SDK
- 添加 @alicloud/openapi-client

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-22 21:04:22 +08:00

65 lines
1.7 KiB
TypeScript

import * as $dara from '@darabonba/typescript';
export declare class DescribeMetricDataResponseBody extends $dara.Model {
/**
* @remarks
* The HTTP status code.
*
* > The status code 200 indicates that the request was successful.
*
* @example
* 200
*/
code?: string;
/**
* @remarks
* The monitoring data. The value includes the following fields:
*
* * `timestamp`: the time when the alert was triggered.
* * `userId`: the ID of the user for which the alert was triggered.
* * `instanceId`: the ID of the instance for which the alert was triggered.
* * `Minimum`, `Average`, and `Maximum`: the aggregation methods.
*
* @example
* [{\\"timestamp\\":1618368900000,\\"Average\\":95.8291666666667,\\"Minimum\\":65.48,\\"Maximum\\":100.0},{\\"timestamp\\":1618368960000,\\"Average\\":95.8683333333333,\\"Minimum\\":67.84,\\"Maximum\\":100.0}]
*/
datapoints?: string;
/**
* @remarks
* The returned message.
*
* @example
* The specified resource is not found.
*/
message?: string;
/**
* @remarks
* The statistical period of the monitoring data.
*
* Valid values: 15, 60, 900, and 3600.
*
* Unit: seconds.
*
* @example
* 60
*/
period?: string;
/**
* @remarks
* The request ID.
*
* @example
* 6A5F022D-AC7C-460E-94AE-B9E75083D027
*/
requestId?: string;
static names(): {
[key: string]: string;
};
static types(): {
[key: string]: any;
};
validate(): void;
constructor(map?: {
[key: string]: any;
});
}