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>
This commit is contained in:
105
backend/node_modules/@alicloud/cms20190101/dist/models/DescribeSystemEventHistogramRequest.d.ts
generated
vendored
Normal file
105
backend/node_modules/@alicloud/cms20190101/dist/models/DescribeSystemEventHistogramRequest.d.ts
generated
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
import * as $dara from '@darabonba/typescript';
|
||||
export declare class DescribeSystemEventHistogramRequest extends $dara.Model {
|
||||
/**
|
||||
* @remarks
|
||||
* The end time.
|
||||
*
|
||||
* This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
||||
*
|
||||
* @example
|
||||
* 1552220485596
|
||||
*/
|
||||
endTime?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The event type.
|
||||
*
|
||||
* > You can call the [DescribeSystemEventMetaList](https://help.aliyun.com/document_detail/114972.html) operation to query the types of system events.
|
||||
*
|
||||
* @example
|
||||
* Exception
|
||||
*/
|
||||
eventType?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The ID of the application group.
|
||||
*
|
||||
* @example
|
||||
* 12345
|
||||
*/
|
||||
groupId?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The level of the event. Valid values:
|
||||
*
|
||||
* * CRITICAL
|
||||
* * WARN
|
||||
* * INFO
|
||||
*
|
||||
* @example
|
||||
* CRITICAL
|
||||
*/
|
||||
level?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The event name.
|
||||
*
|
||||
* > You can call the [DescribeSystemEventMetaList](https://help.aliyun.com/document_detail/114972.html) operation to query the names of system events.
|
||||
*
|
||||
* @example
|
||||
* BucketIngressBandwidth
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The abbreviation of the service name.
|
||||
*
|
||||
* > You can call the [DescribeSystemEventMetaList](https://help.aliyun.com/document_detail/114972.html) operation to query the abbreviations of service names.
|
||||
*
|
||||
* @example
|
||||
* OSS
|
||||
*/
|
||||
product?: string;
|
||||
regionId?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The keywords that are used to search for the system event. Valid values:
|
||||
*
|
||||
* * If you want to search for the system event whose content contains a and b, set the value to `a and b`.
|
||||
* * If you want to search for the system event whose content contains a or b, set the value to `a or b`.
|
||||
*
|
||||
* @example
|
||||
* cms
|
||||
*/
|
||||
searchKeywords?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The start time.
|
||||
*
|
||||
* This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
||||
*
|
||||
* @example
|
||||
* 1552209685596
|
||||
*/
|
||||
startTime?: string;
|
||||
/**
|
||||
* @remarks
|
||||
* The event status.
|
||||
*
|
||||
* > You can call the [DescribeSystemEventMetaList](https://help.aliyun.com/document_detail/114972.html) operation to query the status of system events.
|
||||
*
|
||||
* @example
|
||||
* normal
|
||||
*/
|
||||
status?: string;
|
||||
static names(): {
|
||||
[key: string]: string;
|
||||
};
|
||||
static types(): {
|
||||
[key: string]: any;
|
||||
};
|
||||
validate(): void;
|
||||
constructor(map?: {
|
||||
[key: string]: any;
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user