@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?:
|
|
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?:
|
|
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?:
|
|
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 - 查看机器组列表
|