tencentcloud-sdk-nodejs 4.1.281 → 4.1.283

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.
Files changed (50) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cynosdb/v20190107/cynosdb_client.js +6 -0
  3. package/es/services/dbdc/v20201029/dbdc_client.js +3 -0
  4. package/es/services/es/v20180416/es_client.js +15 -6
  5. package/es/services/lighthouse/v20200324/lighthouse_client.js +3 -0
  6. package/es/services/mps/v20190612/mps_client.js +15 -6
  7. package/es/services/vod/v20180717/vod_client.js +12 -0
  8. package/package.json +1 -1
  9. package/tencentcloud/common/sdk_version.d.ts +1 -1
  10. package/tencentcloud/common/sdk_version.js +1 -1
  11. package/tencentcloud/services/apm/v20210622/apm_models.d.ts +11 -3
  12. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +20 -14
  13. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +160 -14
  14. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +2 -2
  15. package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +8 -0
  16. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +9 -1
  17. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +12 -0
  18. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +46 -0
  19. package/tencentcloud/services/dbdc/v20201029/dbdc_client.d.ts +5 -1
  20. package/tencentcloud/services/dbdc/v20201029/dbdc_client.js +6 -0
  21. package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +36 -1
  22. package/tencentcloud/services/dts/v20211206/dts_models.d.ts +21 -17
  23. package/tencentcloud/services/es/v20180416/es_client.d.ts +19 -7
  24. package/tencentcloud/services/es/v20180416/es_client.js +27 -9
  25. package/tencentcloud/services/es/v20180416/es_models.d.ts +339 -68
  26. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +11 -59
  27. package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +5 -17
  28. package/tencentcloud/services/ga2/v20250115/ga2_models.d.ts +2 -2
  29. package/tencentcloud/services/gwlb/v20240906/gwlb_models.d.ts +7 -11
  30. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +1 -1
  31. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +103 -39
  32. package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +5 -1
  33. package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +6 -0
  34. package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +192 -75
  35. package/tencentcloud/services/live/v20180801/live_client.d.ts +2 -0
  36. package/tencentcloud/services/live/v20180801/live_client.js +2 -0
  37. package/tencentcloud/services/live/v20180801/live_models.d.ts +9 -12
  38. package/tencentcloud/services/mps/v20190612/mps_client.d.ts +19 -7
  39. package/tencentcloud/services/mps/v20190612/mps_client.js +27 -9
  40. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +478 -165
  41. package/tencentcloud/services/tdai/v20250717/tdai_models.d.ts +12 -0
  42. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +4 -0
  43. package/tencentcloud/services/tke/v20220501/tke_models.d.ts +4 -0
  44. package/tencentcloud/services/tokenhub/v20260322/tokenhub_client.d.ts +1 -1
  45. package/tencentcloud/services/tokenhub/v20260322/tokenhub_client.js +1 -1
  46. package/tencentcloud/services/tokenhub/v20260322/tokenhub_models.d.ts +18 -14
  47. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +18 -1
  48. package/tencentcloud/services/vod/v20180717/vod_client.js +25 -0
  49. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +914 -484
  50. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +38 -34
@@ -1 +1 @@
1
- export const sdkVersion = "4.1.281";
1
+ export const sdkVersion = "4.1.283";
@@ -324,6 +324,9 @@ export class Client extends AbstractClient {
324
324
  async CreateAccounts(req, cb) {
325
325
  return this.request("CreateAccounts", req, cb);
326
326
  }
327
+ async TransferClusterPrepayToPostpay(req, cb) {
328
+ return this.request("TransferClusterPrepayToPostpay", req, cb);
329
+ }
327
330
  async RollbackToNewCluster(req, cb) {
328
331
  return this.request("RollbackToNewCluster", req, cb);
329
332
  }
@@ -558,6 +561,9 @@ export class Client extends AbstractClient {
558
561
  async DescribeBackupList(req, cb) {
559
562
  return this.request("DescribeBackupList", req, cb);
560
563
  }
564
+ async TransferStoragePrepayToPostpay(req, cb) {
565
+ return this.request("TransferStoragePrepayToPostpay", req, cb);
566
+ }
561
567
  async ModifyAccountDescription(req, cb) {
562
568
  return this.request("ModifyAccountDescription", req, cb);
563
569
  }
@@ -6,6 +6,9 @@ export class Client extends AbstractClient {
6
6
  async DestroyDBCustomNode(req, cb) {
7
7
  return this.request("DestroyDBCustomNode", req, cb);
8
8
  }
9
+ async ModifyDBCustomNodeAttributes(req, cb) {
10
+ return this.request("ModifyDBCustomNodeAttributes", req, cb);
11
+ }
9
12
  async AddNodesToDBCustomCluster(req, cb) {
10
13
  return this.request("AddNodesToDBCustomCluster", req, cb);
11
14
  }
@@ -12,6 +12,9 @@ export class Client extends AbstractClient {
12
12
  async DescribeIndexList(req, cb) {
13
13
  return this.request("DescribeIndexList", req, cb);
14
14
  }
15
+ async UpdateLogstashPipelineDesc(req, cb) {
16
+ return this.request("UpdateLogstashPipelineDesc", req, cb);
17
+ }
15
18
  async RestoreClusterSnapshot(req, cb) {
16
19
  return this.request("RestoreClusterSnapshot", req, cb);
17
20
  }
@@ -57,8 +60,8 @@ export class Client extends AbstractClient {
57
60
  async DescribeLogstashViews(req, cb) {
58
61
  return this.request("DescribeLogstashViews", req, cb);
59
62
  }
60
- async UpdateLogstashPipelineDesc(req, cb) {
61
- return this.request("UpdateLogstashPipelineDesc", req, cb);
63
+ async SaveAndDeployLogstashPipeline(req, cb) {
64
+ return this.request("SaveAndDeployLogstashPipeline", req, cb);
62
65
  }
63
66
  async DescribeInstancePluginList(req, cb) {
64
67
  return this.request("DescribeInstancePluginList", req, cb);
@@ -114,6 +117,9 @@ export class Client extends AbstractClient {
114
117
  async DescribeServerlessSpaceUser(req, cb) {
115
118
  return this.request("DescribeServerlessSpaceUser", req, cb);
116
119
  }
120
+ async CheckUpdateInstance(req, cb) {
121
+ return this.request("CheckUpdateInstance", req, cb);
122
+ }
117
123
  async ExportIpTraceLog(req, cb) {
118
124
  return this.request("ExportIpTraceLog", req, cb);
119
125
  }
@@ -162,6 +168,9 @@ export class Client extends AbstractClient {
162
168
  async DescribeAutoBackUpStrategy(req, cb) {
163
169
  return this.request("DescribeAutoBackUpStrategy", req, cb);
164
170
  }
171
+ async DescribeClusterDiskRange(req, cb) {
172
+ return this.request("DescribeClusterDiskRange", req, cb);
173
+ }
165
174
  async CreateServerlessInstance(req, cb) {
166
175
  return this.request("CreateServerlessInstance", req, cb);
167
176
  }
@@ -225,8 +234,8 @@ export class Client extends AbstractClient {
225
234
  async RestartKibana(req, cb) {
226
235
  return this.request("RestartKibana", req, cb);
227
236
  }
228
- async SaveAndDeployLogstashPipeline(req, cb) {
229
- return this.request("SaveAndDeployLogstashPipeline", req, cb);
237
+ async UpdateInstancePublicAccess(req, cb) {
238
+ return this.request("UpdateInstancePublicAccess", req, cb);
230
239
  }
231
240
  async DescribeAutoScaleDiskInfo(req, cb) {
232
241
  return this.request("DescribeAutoScaleDiskInfo", req, cb);
@@ -249,8 +258,8 @@ export class Client extends AbstractClient {
249
258
  async DescribeEventDataDetail(req, cb) {
250
259
  return this.request("DescribeEventDataDetail", req, cb);
251
260
  }
252
- async DescribeClusterDiskRange(req, cb) {
253
- return this.request("DescribeClusterDiskRange", req, cb);
261
+ async ModifyAutoScaleDiskInfo(req, cb) {
262
+ return this.request("ModifyAutoScaleDiskInfo", req, cb);
254
263
  }
255
264
  async UpgradeInstance(req, cb) {
256
265
  return this.request("UpgradeInstance", req, cb);
@@ -75,6 +75,9 @@ export class Client extends AbstractClient {
75
75
  async DescribeDisksReturnable(req, cb) {
76
76
  return this.request("DescribeDisksReturnable", req, cb);
77
77
  }
78
+ async DescribeBlueprintBundles(req, cb) {
79
+ return this.request("DescribeBlueprintBundles", req, cb);
80
+ }
78
81
  async ModifyFirewallRules(req, cb) {
79
82
  return this.request("ModifyFirewallRules", req, cb);
80
83
  }
@@ -39,8 +39,11 @@ export class Client extends AbstractClient {
39
39
  async DeletePersonSample(req, cb) {
40
40
  return this.request("DeletePersonSample", req, cb);
41
41
  }
42
- async DeleteAnimatedGraphicsTemplate(req, cb) {
43
- return this.request("DeleteAnimatedGraphicsTemplate", req, cb);
42
+ async CreateAiFissionTask(req, cb) {
43
+ return this.request("CreateAiFissionTask", req, cb);
44
+ }
45
+ async CloneVoice(req, cb) {
46
+ return this.request("CloneVoice", req, cb);
44
47
  }
45
48
  async DescribeAIAnalysisTemplates(req, cb) {
46
49
  return this.request("DescribeAIAnalysisTemplates", req, cb);
@@ -306,6 +309,9 @@ export class Client extends AbstractClient {
306
309
  async DescribeStreamLinkRegions(req, cb) {
307
310
  return this.request("DescribeStreamLinkRegions", req, cb);
308
311
  }
312
+ async TextToSpeech(req, cb) {
313
+ return this.request("TextToSpeech", req, cb);
314
+ }
309
315
  async DescribeSchedules(req, cb) {
310
316
  return this.request("DescribeSchedules", req, cb);
311
317
  }
@@ -327,6 +333,9 @@ export class Client extends AbstractClient {
327
333
  async StopStreamPackageLinearAssemblyChannel(req, cb) {
328
334
  return this.request("StopStreamPackageLinearAssemblyChannel", req, cb);
329
335
  }
336
+ async DeleteAnimatedGraphicsTemplate(req, cb) {
337
+ return this.request("DeleteAnimatedGraphicsTemplate", req, cb);
338
+ }
330
339
  async CreateProject(req, cb) {
331
340
  return this.request("CreateProject", req, cb);
332
341
  }
@@ -402,8 +411,8 @@ export class Client extends AbstractClient {
402
411
  async ModifyWatermarkTemplate(req, cb) {
403
412
  return this.request("ModifyWatermarkTemplate", req, cb);
404
413
  }
405
- async DeleteWordSamples(req, cb) {
406
- return this.request("DeleteWordSamples", req, cb);
414
+ async CreateVideoSearchTask(req, cb) {
415
+ return this.request("CreateVideoSearchTask", req, cb);
407
416
  }
408
417
  async DescribeStreamLinkActivateState(req, cb) {
409
418
  return this.request("DescribeStreamLinkActivateState", req, cb);
@@ -429,8 +438,8 @@ export class Client extends AbstractClient {
429
438
  async DescribeStreamPackageSourceAlerts(req, cb) {
430
439
  return this.request("DescribeStreamPackageSourceAlerts", req, cb);
431
440
  }
432
- async CreateVideoSearchTask(req, cb) {
433
- return this.request("CreateVideoSearchTask", req, cb);
441
+ async DeleteWordSamples(req, cb) {
442
+ return this.request("DeleteWordSamples", req, cb);
434
443
  }
435
444
  async DescribeAigcVideoTask(req, cb) {
436
445
  return this.request("DescribeAigcVideoTask", req, cb);
@@ -129,6 +129,9 @@ export class Client extends AbstractClient {
129
129
  async DescribeTasks(req, cb) {
130
130
  return this.request("DescribeTasks", req, cb);
131
131
  }
132
+ async DeleteKnowledgeBase(req, cb) {
133
+ return this.request("DeleteKnowledgeBase", req, cb);
134
+ }
132
135
  async CreateStorageRegion(req, cb) {
133
136
  return this.request("CreateStorageRegion", req, cb);
134
137
  }
@@ -216,6 +219,9 @@ export class Client extends AbstractClient {
216
219
  async DeleteAIAnalysisTemplate(req, cb) {
217
220
  return this.request("DeleteAIAnalysisTemplate", req, cb);
218
221
  }
222
+ async DescribeKnowledgeBases(req, cb) {
223
+ return this.request("DescribeKnowledgeBases", req, cb);
224
+ }
219
225
  async DescribeDrmKeyProviderInfo(req, cb) {
220
226
  return this.request("DescribeDrmKeyProviderInfo", req, cb);
221
227
  }
@@ -546,6 +552,9 @@ export class Client extends AbstractClient {
546
552
  async DescribeAigcFaceInfoAsync(req, cb) {
547
553
  return this.request("DescribeAigcFaceInfoAsync", req, cb);
548
554
  }
555
+ async ModifyKnowledgeBase(req, cb) {
556
+ return this.request("ModifyKnowledgeBase", req, cb);
557
+ }
549
558
  async CreateJustInTimeTranscodeTemplate(req, cb) {
550
559
  return this.request("CreateJustInTimeTranscodeTemplate", req, cb);
551
560
  }
@@ -678,6 +687,9 @@ export class Client extends AbstractClient {
678
687
  async ModifySubAppIdInfo(req, cb) {
679
688
  return this.request("ModifySubAppIdInfo", req, cb);
680
689
  }
690
+ async CreateKnowledgeBase(req, cb) {
691
+ return this.request("CreateKnowledgeBase", req, cb);
692
+ }
681
693
  async DeleteImageSpriteTemplate(req, cb) {
682
694
  return this.request("DeleteImageSpriteTemplate", req, cb);
683
695
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.1.281",
3
+ "version": "4.1.283",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1 +1 @@
1
- export declare const sdkVersion = "4.1.281";
1
+ export declare const sdkVersion = "4.1.283";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.sdkVersion = void 0;
4
- exports.sdkVersion = "4.1.281";
4
+ exports.sdkVersion = "4.1.283";
@@ -1740,17 +1740,21 @@ export interface ModifyApmInstanceRequest {
1740
1740
  */
1741
1741
  LogSpanIdKey?: string;
1742
1742
  /**
1743
- * <p>是否开启探针头采样</p>
1743
+ * <p>是否开启探针头采样</p><p>(受限)</p>
1744
1744
  */
1745
1745
  EnableHeadSampler?: boolean;
1746
1746
  /**
1747
- * <p>头采类型</p><p>枚举值:</p><ul><li>parentbased_traceidratio: 默认</li></ul>
1747
+ * <p>头采类型</p><p>枚举值:</p><ul><li>parentbased_traceidratio: 默认</li></ul><p>(受限)</p>
1748
1748
  */
1749
1749
  HeadSamplerType?: string;
1750
1750
  /**
1751
- * <p>头采采样率</p><p>取值范围:[0, 100]</p>
1751
+ * <p>头采采样率</p><p>取值范围:[0, 100]</p><p>(受限)</p>
1752
1752
  */
1753
1753
  HeadSamplerArg?: number;
1754
+ /**
1755
+ * <p>是否禁用 AI 能力</p><p>单位:无</p>
1756
+ */
1757
+ DisableAiAbility?: number;
1754
1758
  }
1755
1759
  /**
1756
1760
  * Span日志部分
@@ -2606,6 +2610,10 @@ export interface ApmInstanceDetail {
2606
2610
  * <p>spanId的索引key: 当CLS索引类型为键值索引时生效</p>
2607
2611
  */
2608
2612
  LogSpanIdKey?: string;
2613
+ /**
2614
+ * <p>是否禁用 AI 能力</p><p>单位:无</p>
2615
+ */
2616
+ DisableAiAbility?: number;
2609
2617
  }
2610
2618
  /**
2611
2619
  * Span 对象
@@ -2151,55 +2151,61 @@ export interface DescribeBucketListResponse {
2151
2151
  */
2152
2152
  export interface MountInfo {
2153
2153
  /**
2154
- * 文件系统 ID
2154
+ * <p>文件系统 ID</p>
2155
2155
  */
2156
2156
  FileSystemId?: string;
2157
2157
  /**
2158
- * 挂载点 ID
2158
+ * <p>挂载点 ID</p>
2159
2159
  */
2160
2160
  MountTargetId?: string;
2161
2161
  /**
2162
- * 挂载点 IP
2162
+ * <p>挂载点 IP</p>
2163
2163
  */
2164
2164
  IpAddress?: string;
2165
2165
  /**
2166
- * 挂载根目录
2166
+ * <p>挂载根目录</p>
2167
2167
  */
2168
2168
  FSID?: string;
2169
2169
  /**
2170
- * 挂载点状态,包括creating:创建中;available:运行中;
2171
- deleting:删除中;
2172
- create_failed: 创建失败
2170
+ * <p>挂载点状态,包括creating:创建中;available:运行中;<br>deleting:删除中;<br>create_failed: 创建失败</p>
2173
2171
  */
2174
2172
  LifeCycleState?: string;
2175
2173
  /**
2176
- * 网络类型,包括VPC,CCN
2174
+ * <p>网络类型,包括VPC,CCN</p>
2177
2175
  */
2178
2176
  NetworkInterface?: string;
2179
2177
  /**
2180
- * 私有网络 ID
2178
+ * <p>私有网络 ID</p>
2181
2179
  */
2182
2180
  VpcId?: string;
2183
2181
  /**
2184
- * 私有网络名称
2182
+ * <p>私有网络名称</p>
2185
2183
  */
2186
2184
  VpcName?: string;
2187
2185
  /**
2188
- * 子网 Id
2186
+ * <p>子网 Id</p>
2189
2187
  */
2190
2188
  SubnetId?: string;
2191
2189
  /**
2192
- * 子网名称
2190
+ * <p>子网名称</p>
2193
2191
  */
2194
2192
  SubnetName?: string;
2195
2193
  /**
2196
- * CFS Turbo使用的云联网ID
2194
+ * <p>CFS Turbo使用的云联网ID</p>
2197
2195
  */
2198
2196
  CcnID?: string;
2199
2197
  /**
2200
- * 云联网中CFS Turbo使用的网段
2198
+ * <p>云联网中CFS Turbo使用的网段</p>
2201
2199
  */
2202
2200
  CidrBlock?: string;
2201
+ /**
2202
+ * <p>占用用户ip列表</p>
2203
+ */
2204
+ ServerList?: Array<string>;
2205
+ /**
2206
+ * <p>是否占用超过200个ip</p>
2207
+ */
2208
+ ServerListTruncated?: boolean;
2203
2209
  }
2204
2210
  /**
2205
2211
  * UpdateCfsFileSystemName返回参数结构体
@@ -79,9 +79,17 @@ export interface ModelRouterModel {
79
79
  */
80
80
  Type: string;
81
81
  /**
82
- * <p>服务商/模型 ID(byok_model.model_id,形如 model-xxxxxxxx;Platform 类型不传)</p>
82
+ * <p>BYOK实例ID</p>
83
83
  */
84
84
  ServiceProviderId?: string;
85
+ /**
86
+ * <p>当前 CMR、当前绑定模型下该 BYOK实例的调度优先级。</p><p>取值范围:[0, 2]</p><p>默认值:0</p>
87
+ */
88
+ Order?: number;
89
+ /**
90
+ * <p>当前CMR、当前绑定模型的同一有效Order层内,BYOK实例之间的相对选择权重。</p><p>取值范围:[0, 100]</p><p>默认值:10</p>
91
+ */
92
+ Weight?: number;
85
93
  }
86
94
  /**
87
95
  * DescribeLoadBalancerTraffic返回参数结构体
@@ -1245,6 +1253,27 @@ export interface BatchDeregisterTargetsRequest {
1245
1253
  */
1246
1254
  Targets: Array<BatchTarget>;
1247
1255
  }
1256
+ /**
1257
+ * CMR实例待解绑的模型信息
1258
+ */
1259
+ export interface ModelRouterModelToDisassociate {
1260
+ /**
1261
+ * <p>模型名称</p>
1262
+ */
1263
+ ModelName: string;
1264
+ /**
1265
+ * <p>所属厂商</p>
1266
+ */
1267
+ Provider: string;
1268
+ /**
1269
+ * <p>模型类型。</p><p>枚举值:</p><ul><li>BYOK: BYOK类型</li><li>Platform: 平台类型</li></ul>
1270
+ */
1271
+ Type: string;
1272
+ /**
1273
+ * <p>BYOK实例ID</p>
1274
+ */
1275
+ ServiceProviderId: string;
1276
+ }
1248
1277
  /**
1249
1278
  * ModifyListener返回参数结构体
1250
1279
  */
@@ -1334,6 +1363,10 @@ export interface ModifyModelRouterAttributesRequest {
1334
1363
  * <p>路由配置</p>
1335
1364
  */
1336
1365
  RouterSetting?: RouterSettingWithFallBack;
1366
+ /**
1367
+ * <p>带宽</p><p>取值范围:[1, 2048]</p><p>单位:Mbps</p>
1368
+ */
1369
+ Bandwidth?: number;
1337
1370
  }
1338
1371
  /**
1339
1372
  * 模型路由日志
@@ -1735,6 +1768,14 @@ export interface ModelRouterDetail {
1735
1768
  * <p>模型路由实例所属VPC的ID</p>
1736
1769
  */
1737
1770
  VpcId?: string;
1771
+ /**
1772
+ * <p>带宽</p><p>单位:Mbps</p>
1773
+ */
1774
+ Bandwidth?: number;
1775
+ /**
1776
+ * <p>弹性公网IP的ID</p>
1777
+ */
1778
+ EipAddressId?: string;
1738
1779
  }
1739
1780
  /**
1740
1781
  * DescribeLoadBalancerListByCertId请求参数结构体
@@ -1826,6 +1867,10 @@ export interface Coefficient {
1826
1867
  * <p>缓存命中输入积分系数。</p><p>用于 provider prompt cache 命中的输入 token。</p><p>取值范围:[0, 5000]</p><p>默认值:3</p>
1827
1868
  */
1828
1869
  InputCachedCoefficient?: number;
1870
+ /**
1871
+ * <p>缓存创建积分系数</p>
1872
+ */
1873
+ InputCacheCreationCoefficient?: number;
1829
1874
  /**
1830
1875
  * <p>输入积分系数。</p><p>取值范围:[1, 5000]</p><p>默认值:25</p>
1831
1876
  */
@@ -2603,7 +2648,7 @@ export interface DescribeLBOperateProtectRequest {
2603
2648
  */
2604
2649
  export interface RouterSettingWithFallBack {
2605
2650
  /**
2606
- * <p>模型间路由策略。</p><p>枚举值:</p><ul><li>SimpleShuffle: 简单随机路由</li><li>LowestCost: 最低积分路由</li></ul>
2651
+ * <p>模型间路由策略。</p><p>枚举值:</p><ul><li>SimpleShuffle: 简单随机路由</li><li>CostBasedRouting: 最低积分路由</li></ul>
2607
2652
  注意:此字段可能返回 null,表示取不到有效值。
2608
2653
  */
2609
2654
  CrossModelGroupRoutingStrategy?: string;
@@ -2617,6 +2662,16 @@ export interface RouterSettingWithFallBack {
2617
2662
  注意:此字段可能返回 null,表示取不到有效值。
2618
2663
  */
2619
2664
  RoutingStrategy?: string;
2665
+ /**
2666
+ * <p>CMR实例级别请求组内重试次数</p><p>取值范围:[0, 5]</p><p>默认值:2</p>
2667
+ 注意:此字段可能返回 null,表示取不到有效值。
2668
+ */
2669
+ NumRetries?: number;
2670
+ /**
2671
+ * <p>L2模型组内路由调度算法参数</p>
2672
+ 注意:此字段可能返回 null,表示取不到有效值。
2673
+ */
2674
+ RoutingStrategyArgs?: RoutingStrategyArgs;
2620
2675
  }
2621
2676
  /**
2622
2677
  * 跨域2.0云联网下子机和网卡信息
@@ -4854,6 +4909,27 @@ export interface ListenerHealth {
4854
4909
  */
4855
4910
  Rules?: Array<RuleHealth>;
4856
4911
  }
4912
+ /**
4913
+ * L2模型内路由算法策略参数
4914
+ */
4915
+ export interface RoutingStrategyArgs {
4916
+ /**
4917
+ * <p>最低繁忙路由算法相对近优容差。</p><p>取值范围:[0, 100]</p><p>默认值:0</p><p>仅最低繁忙路由算法生效。0 表示请求仅会路由到在途数最小的上游大模型部署,0.10 表示请求路由到的上游大模型部署在途请求数最多比最小在途数高10%,依次类推。</p>
4918
+ */
4919
+ LeastBusyBuffer?: number;
4920
+ /**
4921
+ * <p>用量均衡路由算法相对近优容差</p><p>取值范围:[0, 100]</p><p>默认值:0</p><p>仅用量均衡路由算法生效。0 表示请求仅会路由到TPM最低的上游大模型部署;0.10 表示请求最多会路由到比TPM最小值高10%的上游大模型部署,依次类推。</p>
4922
+ */
4923
+ UsageBasedBuffer?: number;
4924
+ /**
4925
+ * <p>最低延迟路由算法相对近优容差</p><p>取值范围:[0, 100]</p><p>默认值:0</p><p>仅最低延迟路由算法生效。0 表示请求仅会路由到延迟最低的上游大模型部署;0.10 表示请求最多会路由到比延迟最小值高10%的上游大模型部署,依次类推。</p>
4926
+ */
4927
+ LowestLatencyBuffer?: number;
4928
+ /**
4929
+ * <p>最低积分系数路由算法相对近优容差</p><p>取值范围:[0, 100]</p><p>默认值:0</p><p>仅最低积分系数路由算法生效。0 表示请求仅会路由到积分系数最低的上游大模型部署;0.10 表示请求最多会路由到比积分系数最小值高10%的上游大模型部署,依次类推。</p>
4930
+ */
4931
+ LowestCostBuffer?: number;
4932
+ }
4857
4933
  /**
4858
4934
  * DeleteRewrite请求参数结构体
4859
4935
  */
@@ -5202,6 +5278,18 @@ export interface RouterSettingWithoutFallBack {
5202
5278
  * <p>路由策略</p><p>枚举值:</p><ul><li>SimpleShuffle: 简单随机路由</li><li>LeastBusy: 最低繁忙路由</li><li>LatencyBasedRouting: 最低延迟路由</li><li>UsageBasedRouting: 用量均衡路由</li><li>CostBasedRouting: 最低积分路由</li></ul>
5203
5279
  */
5204
5280
  RoutingStrategy?: string;
5281
+ /**
5282
+ * <p>模型间路由策略。</p><p>枚举值:</p><ul><li>SimpleShuffle: 简单随机路由</li><li>CostBasedRouting: 最低积分路由</li></ul>
5283
+ */
5284
+ CrossModelGroupRoutingStrategy?: string;
5285
+ /**
5286
+ * <p>L2模型组内路由调度算法参数</p>
5287
+ */
5288
+ RoutingStrategyArgs?: RoutingStrategyArgs;
5289
+ /**
5290
+ * <p>CMR实例级别请求组内重试次数</p><p>取值范围:[0, 5]</p><p>默认值:2</p>
5291
+ */
5292
+ NumRetries?: number;
5205
5293
  }
5206
5294
  /**
5207
5295
  * 目标组实例
@@ -5433,6 +5521,14 @@ export interface ModelRouterSet {
5433
5521
  * <p>模型路由实例所属VPC的ID</p>
5434
5522
  */
5435
5523
  VpcId?: string;
5524
+ /**
5525
+ * <p>带宽</p><p>单位:Mbps</p>
5526
+ */
5527
+ Bandwidth?: number;
5528
+ /**
5529
+ * <p>弹性公网IP的ID</p>
5530
+ */
5531
+ EipAddressId?: string;
5436
5532
  }
5437
5533
  /**
5438
5534
  * InquiryPriceRenewLoadBalancer返回参数结构体
@@ -5949,6 +6045,18 @@ export interface ServiceProvider {
5949
6045
  * <p>BYOK名称</p>
5950
6046
  */
5951
6047
  ServiceProviderName?: string;
6048
+ /**
6049
+ * <p>绑定的指定模型组内BYOK实例的调度优先级</p><p>取值范围[0,2],优先级随数值增大而降低。</p>
6050
+ */
6051
+ Order?: number;
6052
+ /**
6053
+ * <p>绑定的指定模型组Order相同层级内BYOK实例的调度权重</p>
6054
+ */
6055
+ Weight?: number;
6056
+ /**
6057
+ * <p>CMR实例-BYOK实例的模型调度绑定关系状态</p><p>枚举值:</p><ul><li>Configuring: 变配中</li><li>ConfigureFailed: 变配失败</li><li>Deleting: 删除中</li><li>Provisioning: 创建中</li><li>Active: 正常可用</li><li>ProvisionFailed: 创建失败</li><li>DeletionFailed: 删除失败</li></ul>
6058
+ */
6059
+ AssociationStatus?: string;
5952
6060
  }
5953
6061
  /**
5954
6062
  * 模型路由资源包抵扣信息
@@ -6066,7 +6174,7 @@ export interface DisassociateModelsFromModelRouterRequest {
6066
6174
  /**
6067
6175
  * <p>需要解除关联的模型信息</p>
6068
6176
  */
6069
- Models?: Array<ModelRouterModel>;
6177
+ Models?: Array<ModelRouterModelToDisassociate>;
6070
6178
  }
6071
6179
  /**
6072
6180
  * 批量创建的Key信息
@@ -6941,6 +7049,32 @@ export interface Sort {
6941
7049
  */
6942
7050
  Order?: string;
6943
7051
  }
7052
+ /**
7053
+ * 模型路由计费信息
7054
+ */
7055
+ export interface ModelRouterBillingConfigInput {
7056
+ /**
7057
+ * <p>模型路由计费模式</p><p>枚举值:</p><ul><li>POSTPAID_BY_HOUR: 按量计费</li><li>RESOURCE_PACKAGE: 按资源包抵扣</li></ul>
7058
+ */
7059
+ ChargeType?: string;
7060
+ /**
7061
+ * <p>实例规格</p><p>枚举值:</p><ul><li>t1.nano-01: 入门版</li><li>t1.nano-02: 轻量版</li><li>t1.nano-03: 轻量增强版</li><li>t1.micro-01: 微型版</li><li>t1.micro-02: 基础版</li><li>t1.small-01: 标准版</li><li>t1.small-02: 标准增强版</li><li>t1.medium-01: 进阶版</li><li>t1.medium-02: 进阶增强版</li><li>t1.large-01: 专业版</li><li>t1.large-02: 专业增强版</li><li>t1.xlarge-01: 旗舰版</li><li>t1.xlarge-02: 至尊版</li></ul>
7062
+ */
7063
+ SlaType?: string;
7064
+ /**
7065
+ * <p>是否关联资源包抵扣</p><p>枚举值:</p><ul><li>true: 关联</li><li>false: 不关联</li></ul>
7066
+ */
7067
+ AssociateResourcePackage?: boolean;
7068
+ }
7069
+ /**
7070
+ * DisassociateModelsFromModelRouter返回参数结构体
7071
+ */
7072
+ export interface DisassociateModelsFromModelRouterResponse {
7073
+ /**
7074
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7075
+ */
7076
+ RequestId?: string;
7077
+ }
6944
7078
  /**
6945
7079
  * 目标组健康检查详情
6946
7080
  */
@@ -7025,15 +7159,6 @@ export interface TargetGroupHealthCheck {
7025
7159
  */
7026
7160
  ExtendedCode?: string;
7027
7161
  }
7028
- /**
7029
- * DisassociateModelsFromModelRouter返回参数结构体
7030
- */
7031
- export interface DisassociateModelsFromModelRouterResponse {
7032
- /**
7033
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7034
- */
7035
- RequestId?: string;
7036
- }
7037
7162
  /**
7038
7163
  * BatchRegisterTargets请求参数结构体
7039
7164
  */
@@ -8748,6 +8873,19 @@ export interface DescribeModelRouterResourcePackageDeductionRequest {
8748
8873
  */
8749
8874
  SortBy?: string;
8750
8875
  }
8876
+ /**
8877
+ * 创建模型路由时的集群信息
8878
+ */
8879
+ export interface ClusterInfoInput {
8880
+ /**
8881
+ * <p>集群ID</p>
8882
+ */
8883
+ ClusterId?: string;
8884
+ /**
8885
+ * <p>集群类型</p><p>枚举值:</p><ul><li>Exclusive: 独占集群</li><li>Public: 公有云共享集群</li></ul>
8886
+ */
8887
+ Type?: string;
8888
+ }
8751
8889
  /**
8752
8890
  * AssociateTargetGroups返回参数结构体
8753
8891
  */
@@ -10000,13 +10138,13 @@ export interface CreateModelRouterRequest {
10000
10138
  */
10001
10139
  BudgetId?: string;
10002
10140
  /**
10003
- * <p>证书ID</p><p>入参限制:当Schema为HTTPS时,该参数必传</p>
10141
+ * <p>证书ID</p><p>入参限制:当Scheme为HTTPS时,该参数必传</p>
10004
10142
  */
10005
10143
  CertId?: string;
10006
10144
  /**
10007
10145
  * <p>集群信息</p>
10008
10146
  */
10009
- ClusterInfo?: ClusterInfo;
10147
+ ClusterInfo?: ClusterInfoInput;
10010
10148
  /**
10011
10149
  * <p>模型路由实例名称</p><p>默认值:-</p>
10012
10150
  */
@@ -10043,6 +10181,14 @@ export interface CreateModelRouterRequest {
10043
10181
  * <p>模型路由实例所属VPC的ID</p>
10044
10182
  */
10045
10183
  VpcId?: string;
10184
+ /**
10185
+ * <p>模型路由实例计费信息</p>
10186
+ */
10187
+ ModelRouterBillingConfig?: ModelRouterBillingConfigInput;
10188
+ /**
10189
+ * <p>客户端Token,用于保证请求的幂等性。 从您的客户端生成一个参数值,确保不同请求间该参数值唯一。ClientToken只支持ASCII字符。</p>
10190
+ */
10191
+ ClientToken?: string;
10046
10192
  }
10047
10193
  /**
10048
10194
  * DescribeClassicalLBListeners请求参数结构体
@@ -22288,11 +22288,11 @@ export interface CosRiskViewInfo {
22288
22288
  LastScanTimestamp?: number;
22289
22289
  }
22290
22290
  /**
22291
- * 过滤条件。同一 Name 下多个 Values 为或关系;不同 Name 之间为且关系。支持的 Name:TaskID(任务ID精确)、TaskStatus(任务状态)、TaskType(任务类型)
22291
+ * 过滤条件。同一 Name 下多个 Values 为或关系;不同 Name 之间为且关系。支持的 Name:ResultStatus(通过状态)、AssetName(资产名称/ID模糊)、IP(IP地址模糊)、Tag(资产标签模糊)
22292
22292
  */
22293
22293
  export interface Filters {
22294
22294
  /**
22295
- * 过滤条件名称。取值:TaskID(任务ID,精确匹配)、TaskStatus(任务状态,Values: INIT/SCANNING/SUCCESS/FAILED)、TaskType(任务类型,Values: PERIODIC/MANUAL)
22295
+ * 过滤条件名称。取值:ResultStatus(通过状态,Values: PASS/NOT_PASS)、AssetName(资产名称/ID,模糊匹配)、IP(IP地址,模糊匹配)、Tag(资产标签,模糊匹配)
22296
22296
  */
22297
22297
  Name?: string;
22298
22298
  /**
@@ -2077,6 +2077,10 @@ export interface DisplayHttp {
2077
2077
  * <p>聚合视角下该组真实子项总数;非聚合视角为 0</p>
2078
2078
  */
2079
2079
  AggregationCount?: number;
2080
+ /**
2081
+ * <p>可用性标签:解析已失效/端口连接超时/网站请求超时/服务错误(5xx)/高延迟(非宕机)</p>
2082
+ */
2083
+ AvailabilityTag?: string;
2080
2084
  }
2081
2085
  /**
2082
2086
  * CreateDomain返回参数结构体
@@ -3121,6 +3125,10 @@ export interface DisplaySubDomain {
3121
3125
  * <p>聚合视角下该组真实子项总数;非聚合视角为 0</p>
3122
3126
  */
3123
3127
  AggregationCount?: number;
3128
+ /**
3129
+ * <p>可用性标签:解析已失效/端口连接超时/网站请求超时/服务错误(5xx)/高延迟(非宕机)</p>
3130
+ */
3131
+ AvailabilityTag?: string;
3124
3132
  }
3125
3133
  /**
3126
3134
  * DeleteHttps返回参数结构体