@ucloud-sdks/ucloud-sdk-js 0.2.48 → 0.2.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -130,7 +130,7 @@ export interface SendSESEmailResponse {
130
130
  */
131
131
  Bcc?: string[];
132
132
  /**
133
- * 模版变量
133
+ * 模版变量,variableName{##}variableValue 格式;仅使用模版发送(SendSESEmailTemplate)时返回,未使用模版发送(SendSESEmail)时不返回该字段
134
134
  */
135
135
  TemplateVariableParams?: string[];
136
136
  /**
@@ -252,7 +252,7 @@ export interface SendSESEmailTemplateResponse {
252
252
  */
253
253
  Bcc?: string[];
254
254
  /**
255
- * 模版变量
255
+ * 模版变量,variableName{##}variableValue 格式;仅使用模版发送(SendSESEmailTemplate)时返回,未使用模版发送(SendSESEmail)时不返回该字段
256
256
  */
257
257
  TemplateVariableParams?: string[];
258
258
  /**
@@ -1090,7 +1090,7 @@ export interface GetUFSquareModelDetailResponse {
1090
1090
  /**
1091
1091
  * 价格
1092
1092
  */
1093
- Price?: string;
1093
+ Price?: number;
1094
1094
  }[];
1095
1095
  /**
1096
1096
  * 档位描述(例如 "标准上下文 32k")
@@ -1179,7 +1179,7 @@ export interface GetUFSquareModelPricesResponse {
1179
1179
  /**
1180
1180
  * 价格
1181
1181
  */
1182
- Price?: string;
1182
+ Price?: number;
1183
1183
  }[];
1184
1184
  /**
1185
1185
  * 档位描述(例如 "标准上下文 32k")
@@ -2030,7 +2030,7 @@ export interface ListUFSquareModelResponse {
2030
2030
  /**
2031
2031
  * 价格
2032
2032
  */
2033
- Price?: string;
2033
+ Price?: number;
2034
2034
  }[];
2035
2035
  /**
2036
2036
  * 档位描述(例如 "标准上下文 32k")
@@ -628,6 +628,10 @@ export interface ListULogServiceLogSetResponse {
628
628
  * 日志集下主题数量
629
629
  */
630
630
  TopicCount?: number;
631
+ /**
632
+ * 日志集ID
633
+ */
634
+ LogSetId?: string;
631
635
  /**
632
636
  * 日志集备注
633
637
  */
@@ -645,6 +649,10 @@ export interface ListULogServiceLogSetResponse {
645
649
  */
646
650
  UpdateTime?: number;
647
651
  }[];
652
+ /**
653
+ * 日志集数量
654
+ */
655
+ TotalCount?: number;
648
656
  }
649
657
  /**
650
658
  * ListULogServiceMachineGroup - 查看机器组列表
@@ -4797,7 +4797,7 @@ export interface UpdateSecGroupRequest {
4797
4797
  /**
4798
4798
  * 安全组资源ID数组。不支持 .n 格式。Type 为 string 数组。
4799
4799
  */
4800
- SecGroupId: string;
4800
+ SecGroupId: string[];
4801
4801
  /**
4802
4802
  * 安全组名称,默认为空,为空则不做修改。Name,Tag,Remark必须填写1个及以上
4803
4803
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ucloud-sdks/ucloud-sdk-js",
3
3
  "description": "ucloud-sdk-js",
4
- "version": "0.2.48",
4
+ "version": "0.2.50",
5
5
  "author": "oas@ucloud.cn",
6
6
  "license": "MIT",
7
7
  "private": false,