Files
vue-driven-cloud-storage/backend/node_modules/@alicloud/cms20190101/dist/models/DescribeSystemEventAttributeResponseBody.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

172 lines
3.8 KiB
TypeScript

import * as $dara from '@darabonba/typescript';
export declare class DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent extends $dara.Model {
/**
* @remarks
* The details of the event.
*
* @example
* [{"product":"CloudMonitor","content":"{\\"ipGroup\\":\\"112.126.XX.XX,10.163.XX.XX\\",\\"tianjimonVersion\\":\\"1.2.22\\"}","groupId":"176,177,178,179,180,692,120812,1663836,96,2028302","time":"1552209568000","resourceId":"acs:ecs:cn-beijing:173651113438****:instance/i-25k35****","level":"CRITICAL","status":"stopped","instanceName":"cmssiteprobebj-6","name":"Agent_Status_Stopped","regionId":"cn-beijing"}]
*/
content?: string;
/**
* @remarks
* The ID of the application group.
*
* @example
* 12345
*/
groupId?: string;
/**
* @remarks
* The event ID.
*
* @example
* b936efc9-f621-4e8a-a6eb-076be40e****
*/
id?: string;
/**
* @remarks
* The instance name.
*
* @example
* instanceId1
*/
instanceName?: string;
/**
* @remarks
* The level of the event. Valid values:
*
* * CRITICAL
* * WARN
* * INFO
*
* @example
* WARN
*/
level?: string;
/**
* @remarks
* The event name.
*
* @example
* Agent_Status_Stopped
*/
name?: string;
/**
* @remarks
* The abbreviation of the service name.
*
* @example
* CloudMonitor
*/
product?: string;
/**
* @remarks
* The region ID.
*
* @example
* cn-hangzhou
*/
regionId?: string;
/**
* @remarks
* The resource ID.
*
* @example
* xxxxx-1
*/
resourceId?: string;
/**
* @remarks
* The status of the event.
*
* @example
* normal
*/
status?: string;
/**
* @remarks
* The time when the event occurred. The value is a timestamp.
*
* Unit: milliseconds.
*
* @example
* 1552199984000
*/
time?: number;
static names(): {
[key: string]: string;
};
static types(): {
[key: string]: any;
};
validate(): void;
constructor(map?: {
[key: string]: any;
});
}
export declare class DescribeSystemEventAttributeResponseBodySystemEvents extends $dara.Model {
systemEvent?: DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent[];
static names(): {
[key: string]: string;
};
static types(): {
[key: string]: any;
};
validate(): void;
constructor(map?: {
[key: string]: any;
});
}
export declare class DescribeSystemEventAttributeResponseBody extends $dara.Model {
/**
* @remarks
* The HTTP status code.
*
* > The status code 200 indicates that the call is successful.
*
* @example
* 200
*/
code?: string;
/**
* @remarks
* The message that is returned. If the call is successful, `success` is returned. If the call fails, an error message is returned.
*
* @example
* success
*/
message?: string;
/**
* @remarks
* The ID of the request.
*
* @example
* 60912C8D-B340-4253-ADE7-61ACDFD25CFC
*/
requestId?: string;
/**
* @remarks
* Indicates whether the call is successful. Valid values: True: The call is successful. false: The call fails.
*
* @example
* true
*/
success?: string;
/**
* @remarks
* The details of the event.
*/
systemEvents?: DescribeSystemEventAttributeResponseBodySystemEvents;
static names(): {
[key: string]: string;
};
static types(): {
[key: string]: any;
};
validate(): void;
constructor(map?: {
[key: string]: any;
});
}