功能新增: - 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>
78 lines
1.7 KiB
TypeScript
78 lines
1.7 KiB
TypeScript
import * as $dara from '@darabonba/typescript';
|
|
export declare class PutCustomEventRequestEventInfo extends $dara.Model {
|
|
/**
|
|
* @remarks
|
|
* The event content. Valid values of N: 1 to 50.
|
|
*
|
|
* This parameter is required.
|
|
*
|
|
* @example
|
|
* IOException
|
|
*/
|
|
content?: string;
|
|
/**
|
|
* @remarks
|
|
* The event name. Valid values of N: 1 to 50.
|
|
*
|
|
* This parameter is required.
|
|
*
|
|
* @example
|
|
* myEvent
|
|
*/
|
|
eventName?: string;
|
|
/**
|
|
* @remarks
|
|
* The ID of the application group. Valid values of N: 1 to 50.
|
|
*
|
|
* Default value: 0. This value indicates that the event to be reported does not belong to any application group.
|
|
*
|
|
* @example
|
|
* 123456
|
|
*/
|
|
groupId?: string;
|
|
/**
|
|
* @remarks
|
|
* The time when the event occurred.
|
|
*
|
|
* Format: `yyyyMMddTHHmmss.SSSZ`.
|
|
*
|
|
* Valid values of N: 1 to 50.
|
|
*
|
|
* > You can also specify a UNIX timestamp. Example: 1552199984000. Unit: milliseconds.
|
|
*
|
|
* @example
|
|
* 20171013T170923.456+0800
|
|
*/
|
|
time?: string;
|
|
static names(): {
|
|
[key: string]: string;
|
|
};
|
|
static types(): {
|
|
[key: string]: any;
|
|
};
|
|
validate(): void;
|
|
constructor(map?: {
|
|
[key: string]: any;
|
|
});
|
|
}
|
|
export declare class PutCustomEventRequest extends $dara.Model {
|
|
/**
|
|
* @remarks
|
|
* The event details.
|
|
*
|
|
* This parameter is required.
|
|
*/
|
|
eventInfo?: PutCustomEventRequestEventInfo[];
|
|
regionId?: string;
|
|
static names(): {
|
|
[key: string]: string;
|
|
};
|
|
static types(): {
|
|
[key: string]: any;
|
|
};
|
|
validate(): void;
|
|
constructor(map?: {
|
|
[key: string]: any;
|
|
});
|
|
}
|