Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.30
0.2.31
224 changes: 36 additions & 188 deletions lib/services/cloudwatch/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,16 @@ export interface ListAlertRecordResponse {
/**
* 产品相关的额外属性列表
*/
ContentAttrList?: string[];
ContentAttrList?: {
/**
* 键
*/
Key?: string;
/**
* 值
*/
Value?: string;
}[];
}[];
/**
* 告警记录总数
Expand Down Expand Up @@ -1200,37 +1209,13 @@ export interface QueryMetricDataSetResponse {
*/
TagEntries?: {
/**
* ID
*/
Id?: number;
/**
* 资源类型ID
*/
ObjectType?: string;
/**
* 资源类型
*/
ObjectTypeKey?: string;
/**
* 产品名称
*/
ProductName?: string;
/**
* 产品子名称
*/
ProductName1?: string;
/**
* 产品中文名称
* 标签名称
*/
ProductCNName?: string;
TagName?: string;
/**
* 产品英文名称
* 标签候选值列表
*/
ProductENName?: string;
/**
* {type: spec|basic, key:string, name: string}[] -> JSON字符串
*/
Metas?: string;
KeyList?: string[];
}[];
/**
* 查询到的时间序列列表
Expand All @@ -1247,7 +1232,16 @@ export interface QueryMetricDataSetResponse {
/**
* 资源标签列表。每项为 TagListItem:Tag(标签名)和 TagValue(标签值)。
*/
TagList?: number[];
TagList?: {
/**
* 标签名
*/
Tag?: string;
/**
* 标签值
*/
TagValue?: string;
}[];
/**
* 指标数据点列表,元素为 MetricPoint
*/
Expand Down Expand Up @@ -1331,144 +1325,26 @@ export interface QueryMetricDataSummaryResponse {
*/
ResourceExtendAttrList?: {
/**
* 指标名
*
*/
Metric?: string;
Key?: string;
/**
* 指标数据数组
*
*/
MetricValues?: {
/**
* 指标名
*/
Metric?: string;
/**
* 指标标签列表
*/
TagsList?: {
/**
* ID
*/
Id?: number;
/**
* 资源类型ID
*/
ProductType?: number;
/**
* 资源类型唯一key
*/
ProductKey?: string;
/**
* 产品名称
*/
ProductName?: string;
/**
* 产品子名称
*/
ProductName1?: string;
/**
* 产品中文名称
*/
ProductChName?: string;
/**
* 产品英文名称
*/
ProductEnName?: string;
/**
* {Type: 1|2, Key:string, Name: string}[] -> JSON字符串
*/
Metas?: string;
/**
* 产品分组
*/
ProductGroup?: string;
}[];
/**
* 指标单个样本点对象
*/
Value?: {
/**
* 时间戳
*/
Timestamp?: number;
/**
* 样本值
*/
Value?: number;
};
}[];
Value?: string;
}[];
/**
* 资源标签属性列表
*/
LabelAttrList?: {
/**
* 指标名
*
*/
Metric?: string;
Key?: string;
/**
* 指标数据数组
*
*/
MetricValues?: {
/**
* 指标名
*/
Metric?: string;
/**
* 指标标签列表
*/
TagsList?: {
/**
* ID
*/
Id?: number;
/**
* 资源类型ID
*/
ProductType?: number;
/**
* 资源类型唯一key
*/
ProductKey?: string;
/**
* 产品名称
*/
ProductName?: string;
/**
* 产品子名称
*/
ProductName1?: string;
/**
* 产品中文名称
*/
ProductChName?: string;
/**
* 产品英文名称
*/
ProductEnName?: string;
/**
* {Type: 1|2, Key:string, Name: string}[] -> JSON字符串
*/
Metas?: string;
/**
* 产品分组
*/
ProductGroup?: string;
}[];
/**
* 指标单个样本点对象
*/
Value?: {
/**
* 时间戳
*/
Timestamp?: number;
/**
* 样本值
*/
Value?: number;
};
}[];
Value?: string;
}[];
/**
* 公司id
Expand Down Expand Up @@ -1523,41 +1399,13 @@ export interface QueryMetricDataSummaryResponse {
*/
TagsList?: {
/**
* ID
*/
Id?: number;
/**
* 资源类型ID
*/
ProductType?: number;
/**
* 资源类型唯一key
*/
ProductKey?: string;
/**
* 产品名称
*/
ProductName?: string;
/**
* 产品子名称
*/
ProductName1?: string;
/**
* 产品中文名称
*/
ProductChName?: string;
/**
* 产品英文名称
*/
ProductEnName?: string;
/**
* {Type: 1|2, Key:string, Name: string}[] -> JSON字符串
* 标签名
*/
Metas?: string;
Tag?: string;
/**
* 产品分组
* 标签值
*/
ProductGroup?: string;
TagValue?: string;
}[];
/**
* 指标单个样本点对象
Expand Down
2 changes: 1 addition & 1 deletion lib/services/udb/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2487,7 +2487,7 @@ export interface DescribeUDBInstancePriceRequest {
*/
Zone: string;
/**
* 内存限制(MB),单位为MB.目前支持:2000-96000
* 内存限制(MB),目前支持2000‑96000,按1000进制(1GB=1000MB)计算
*/
MemoryLimit: number;
/**
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucloud-sdks/ucloud-sdk-js",
"description": "ucloud-sdk-js",
"version": "0.2.30",
"version": "0.2.31",
"author": "oas@ucloud.cn",
"license": "MIT",
"private": false,
Expand Down
Loading