功能新增: - 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>
130 lines
3.2 KiB
TypeScript
130 lines
3.2 KiB
TypeScript
import * as $dara from '@darabonba/typescript';
|
|
export declare class DescribeSystemEventAttributeRequest extends $dara.Model {
|
|
/**
|
|
* @remarks
|
|
* The end of the time range to query.
|
|
*
|
|
* The value must be a UNIX timestamp. It is the number of seconds that have elapsed since 00:00:00 UTC, January 1, 1970.
|
|
*
|
|
* @example
|
|
* 1552221584949
|
|
*/
|
|
endTime?: string;
|
|
/**
|
|
* @remarks
|
|
* The type of the system event.
|
|
*
|
|
* > 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
|
|
* 12346
|
|
*/
|
|
groupId?: string;
|
|
/**
|
|
* @remarks
|
|
* The level of the system event. Valid values:
|
|
*
|
|
* * CRITICAL: critical
|
|
* * WARN: warning
|
|
* * INFO: information
|
|
*
|
|
* @example
|
|
* CRITICAL
|
|
*/
|
|
level?: string;
|
|
/**
|
|
* @remarks
|
|
* The name of the system event.
|
|
*
|
|
* > 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 number of the page to return.
|
|
*
|
|
* Valid values: 1 to 100000000.
|
|
*
|
|
* Default value: 1.
|
|
*
|
|
* @example
|
|
* 1
|
|
*/
|
|
pageNumber?: number;
|
|
/**
|
|
* @remarks
|
|
* The number of entries to return on each page.
|
|
*
|
|
* Valid values: 1 to 100.
|
|
*
|
|
* Default value: 10
|
|
*
|
|
* @example
|
|
* 10
|
|
*/
|
|
pageSize?: number;
|
|
/**
|
|
* @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 beginning of the time range to query.
|
|
*
|
|
* The value must be a UNIX timestamp. It is the number of seconds that have elapsed since 00:00:00 UTC, January 1, 1970.
|
|
*
|
|
* @example
|
|
* 1552199984949
|
|
*/
|
|
startTime?: string;
|
|
/**
|
|
* @remarks
|
|
* The status of the system event.
|
|
*
|
|
* > You can call the [DescribeSystemEventMetaList](https://help.aliyun.com/document_detail/114972.html) operation to query the statuses of system events.
|
|
*
|
|
* @example
|
|
* normal
|
|
*/
|
|
status?: string;
|
|
static names(): {
|
|
[key: string]: string;
|
|
};
|
|
static types(): {
|
|
[key: string]: any;
|
|
};
|
|
validate(): void;
|
|
constructor(map?: {
|
|
[key: string]: any;
|
|
});
|
|
}
|