tencentcloud-sdk-nodejs 4.1.198 → 4.1.199
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.
- package/es/common/sdk_version.js +1 -1
- package/es/services/ess/v20201111/ess_client.js +6 -0
- package/es/services/ga2/index.js +4 -0
- package/es/services/ga2/v20250115/ga2_client.js +9 -0
- package/es/services/ga2/v20250115/ga2_models.js +1 -0
- package/es/services/ga2/v20250115/index.js +6 -0
- package/es/services/hai/v20230812/hai_client.js +41 -29
- package/es/services/index.js +1 -0
- package/es/services/lcic/v20220817/lcic_client.js +6 -0
- package/es/services/live/v20180801/live_client.js +67 -16
- package/es/services/mps/v20190612/mps_client.js +12 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +45 -106
- package/tencentcloud/services/dataagent/v20250513/dataagent_models.d.ts +16 -14
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +9 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +12 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +105 -0
- package/tencentcloud/services/ga2/index.d.ts +6 -0
- package/tencentcloud/services/ga2/index.js +7 -0
- package/tencentcloud/services/ga2/v20250115/ga2_client.d.ts +14 -0
- package/tencentcloud/services/ga2/v20250115/ga2_client.js +37 -0
- package/tencentcloud/services/ga2/v20250115/ga2_models.d.ts +34 -0
- package/tencentcloud/services/ga2/v20250115/ga2_models.js +18 -0
- package/tencentcloud/services/ga2/v20250115/index.d.ts +6 -0
- package/tencentcloud/services/ga2/v20250115/index.js +10 -0
- package/tencentcloud/services/hai/v20230812/hai_client.d.ts +49 -33
- package/tencentcloud/services/hai/v20230812/hai_client.js +71 -47
- package/tencentcloud/services/hai/v20230812/hai_models.d.ts +333 -67
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +5 -3
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +25 -0
- package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +9 -1
- package/tencentcloud/services/lcic/v20220817/lcic_client.js +12 -0
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +178 -106
- package/tencentcloud/services/live/v20180801/live_client.d.ts +87 -19
- package/tencentcloud/services/live/v20180801/live_client.js +128 -26
- package/tencentcloud/services/live/v20180801/live_models.d.ts +1050 -290
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +6 -1
- package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +3 -1
- package/tencentcloud/services/monitor/v20180724/monitor_client.js +3 -1
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +17 -1
- package/tencentcloud/services/mps/v20190612/mps_client.js +24 -0
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +631 -1398
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +0 -8
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +20 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +3 -3
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +6 -2
|
@@ -54,17 +54,23 @@ export interface ResizeInstanceDiskResponse {
|
|
|
54
54
|
RequestId?: string;
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* StopInstance请求参数结构体
|
|
58
58
|
*/
|
|
59
|
-
export interface
|
|
59
|
+
export interface StopInstanceRequest {
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* 实例ID。可通过[DescribeInstances](https://cloud.tencent.com/document/api/1721/101612) API获取实例ID。
|
|
62
62
|
*/
|
|
63
|
-
|
|
63
|
+
InstanceId: string;
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* hai实例关机的模式,目前仅支持关机不收费:
|
|
66
|
+
STOP_CHARGE -- 关闭hai实例,释放计算资源,停止收取计算资源的费用。
|
|
67
|
+
注意:默认值为STOP_CHARGE
|
|
66
68
|
*/
|
|
67
|
-
|
|
69
|
+
StopMode?: string;
|
|
70
|
+
/**
|
|
71
|
+
* 默认为False,True代表只验证接口连通性
|
|
72
|
+
*/
|
|
73
|
+
DryRun?: boolean;
|
|
68
74
|
}
|
|
69
75
|
/**
|
|
70
76
|
* DescribeServiceLoginSettings返回参数结构体
|
|
@@ -174,6 +180,19 @@ export interface TerminateInstancesResponse {
|
|
|
174
180
|
*/
|
|
175
181
|
RequestId?: string;
|
|
176
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* RunInstances返回参数结构体
|
|
185
|
+
*/
|
|
186
|
+
export interface RunInstancesResponse {
|
|
187
|
+
/**
|
|
188
|
+
* 实例ID列表
|
|
189
|
+
*/
|
|
190
|
+
InstanceIdSet?: Array<string>;
|
|
191
|
+
/**
|
|
192
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
193
|
+
*/
|
|
194
|
+
RequestId?: string;
|
|
195
|
+
}
|
|
177
196
|
/**
|
|
178
197
|
* HiCache信息
|
|
179
198
|
*/
|
|
@@ -184,22 +203,9 @@ export interface HiCacheInfo {
|
|
|
184
203
|
HiCacheLevel?: string;
|
|
185
204
|
}
|
|
186
205
|
/**
|
|
187
|
-
*
|
|
206
|
+
* DescribeRegions请求参数结构体
|
|
188
207
|
*/
|
|
189
|
-
export
|
|
190
|
-
/**
|
|
191
|
-
* 应用总数
|
|
192
|
-
*/
|
|
193
|
-
TotalCount?: number;
|
|
194
|
-
/**
|
|
195
|
-
* 分页返回的应用列表
|
|
196
|
-
*/
|
|
197
|
-
ApplicationSet?: Array<ApplicationInfo>;
|
|
198
|
-
/**
|
|
199
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
200
|
-
*/
|
|
201
|
-
RequestId?: string;
|
|
202
|
-
}
|
|
208
|
+
export type DescribeRegionsRequest = null;
|
|
203
209
|
/**
|
|
204
210
|
* StartInstance请求参数结构体
|
|
205
211
|
*/
|
|
@@ -214,17 +220,17 @@ export interface StartInstanceRequest {
|
|
|
214
220
|
DryRun?: boolean;
|
|
215
221
|
}
|
|
216
222
|
/**
|
|
217
|
-
*
|
|
223
|
+
* CreateInferServiceByTemplate返回参数结构体
|
|
218
224
|
*/
|
|
219
|
-
export interface
|
|
225
|
+
export interface CreateInferServiceByTemplateResponse {
|
|
220
226
|
/**
|
|
221
|
-
*
|
|
227
|
+
* 服务ID
|
|
222
228
|
*/
|
|
223
|
-
|
|
229
|
+
ServiceId?: string;
|
|
224
230
|
/**
|
|
225
|
-
*
|
|
231
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
226
232
|
*/
|
|
227
|
-
|
|
233
|
+
RequestId?: string;
|
|
228
234
|
}
|
|
229
235
|
/**
|
|
230
236
|
* HAI 实例的网络配置和消耗情况
|
|
@@ -253,6 +259,34 @@ export interface NetworkStatus {
|
|
|
253
259
|
*/
|
|
254
260
|
RemainingTrafficAmount?: number;
|
|
255
261
|
}
|
|
262
|
+
/**
|
|
263
|
+
* 资源相关信息
|
|
264
|
+
*/
|
|
265
|
+
export interface ComputeInfo {
|
|
266
|
+
/**
|
|
267
|
+
* 资源类型及数量
|
|
268
|
+
*/
|
|
269
|
+
ComputeResources?: Array<ComputeResource>;
|
|
270
|
+
/**
|
|
271
|
+
* 副本数
|
|
272
|
+
*/
|
|
273
|
+
Replicas?: number;
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* 场景详情
|
|
277
|
+
*/
|
|
278
|
+
export interface SceneInfo {
|
|
279
|
+
/**
|
|
280
|
+
* 场景id
|
|
281
|
+
|
|
282
|
+
*/
|
|
283
|
+
SceneId?: string;
|
|
284
|
+
/**
|
|
285
|
+
* 场景名
|
|
286
|
+
|
|
287
|
+
*/
|
|
288
|
+
SceneName?: string;
|
|
289
|
+
}
|
|
256
290
|
/**
|
|
257
291
|
* 描述了服务的超参数配置
|
|
258
292
|
*/
|
|
@@ -275,6 +309,44 @@ export interface ResizeInstanceDiskRequest {
|
|
|
275
309
|
*/
|
|
276
310
|
DiskSize: number;
|
|
277
311
|
}
|
|
312
|
+
/**
|
|
313
|
+
* DescribeDeployTemplates返回参数结构体
|
|
314
|
+
*/
|
|
315
|
+
export interface DescribeDeployTemplatesResponse {
|
|
316
|
+
/**
|
|
317
|
+
* 模板列表
|
|
318
|
+
*/
|
|
319
|
+
TemplateSet?: Array<TemplateDetail>;
|
|
320
|
+
/**
|
|
321
|
+
* 支持的推理引擎
|
|
322
|
+
*/
|
|
323
|
+
EngineTypes?: Array<string>;
|
|
324
|
+
/**
|
|
325
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
326
|
+
*/
|
|
327
|
+
RequestId?: string;
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* 推理集群的网络设置
|
|
331
|
+
*/
|
|
332
|
+
export interface NetworkSetting {
|
|
333
|
+
/**
|
|
334
|
+
* 公网访问
|
|
335
|
+
*/
|
|
336
|
+
PublicEndpointEnable?: boolean;
|
|
337
|
+
/**
|
|
338
|
+
* 内网访问
|
|
339
|
+
*/
|
|
340
|
+
VpcEndpointEnable?: boolean;
|
|
341
|
+
/**
|
|
342
|
+
* vpc内网ID
|
|
343
|
+
*/
|
|
344
|
+
VpcId?: string;
|
|
345
|
+
/**
|
|
346
|
+
* 子网ID
|
|
347
|
+
*/
|
|
348
|
+
SubnetId?: string;
|
|
349
|
+
}
|
|
278
350
|
/**
|
|
279
351
|
* 费用数据结构体
|
|
280
352
|
*/
|
|
@@ -293,36 +365,30 @@ export interface Price {
|
|
|
293
365
|
PriceDetailSet?: Array<ItemPriceDetail>;
|
|
294
366
|
}
|
|
295
367
|
/**
|
|
296
|
-
*
|
|
368
|
+
* DeployInferService返回参数结构体
|
|
297
369
|
*/
|
|
298
|
-
export interface
|
|
299
|
-
/**
|
|
300
|
-
* 实例ID。可通过[DescribeInstances](https://cloud.tencent.com/document/api/1721/101612) API获取实例ID。
|
|
301
|
-
*/
|
|
302
|
-
InstanceId: string;
|
|
370
|
+
export interface DeployInferServiceResponse {
|
|
303
371
|
/**
|
|
304
|
-
*
|
|
305
|
-
STOP_CHARGE -- 关闭hai实例,释放计算资源,停止收取计算资源的费用。
|
|
306
|
-
注意:默认值为STOP_CHARGE
|
|
372
|
+
* 服务ID
|
|
307
373
|
*/
|
|
308
|
-
|
|
374
|
+
ServiceId?: string;
|
|
309
375
|
/**
|
|
310
|
-
*
|
|
376
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
311
377
|
*/
|
|
312
|
-
|
|
378
|
+
RequestId?: string;
|
|
313
379
|
}
|
|
314
380
|
/**
|
|
315
|
-
*
|
|
381
|
+
* 推理服务的算力资源
|
|
316
382
|
*/
|
|
317
|
-
export interface
|
|
383
|
+
export interface ComputeResource {
|
|
318
384
|
/**
|
|
319
|
-
*
|
|
385
|
+
* 算力套餐的类型
|
|
320
386
|
*/
|
|
321
|
-
|
|
387
|
+
BundleType: string;
|
|
322
388
|
/**
|
|
323
|
-
*
|
|
389
|
+
* 节点数量
|
|
324
390
|
*/
|
|
325
|
-
|
|
391
|
+
Count: number;
|
|
326
392
|
}
|
|
327
393
|
/**
|
|
328
394
|
* DescribeMuskPrompts请求参数结构体
|
|
@@ -371,6 +437,19 @@ export interface ServicePriceDetail {
|
|
|
371
437
|
*/
|
|
372
438
|
ServicePrice?: ItemPrice;
|
|
373
439
|
}
|
|
440
|
+
/**
|
|
441
|
+
* 存储信息
|
|
442
|
+
*/
|
|
443
|
+
export interface StorageInfo {
|
|
444
|
+
/**
|
|
445
|
+
* 挂载路径
|
|
446
|
+
*/
|
|
447
|
+
MountPath: string;
|
|
448
|
+
/**
|
|
449
|
+
* cos挂载信息
|
|
450
|
+
*/
|
|
451
|
+
COSStorage?: COSStorage;
|
|
452
|
+
}
|
|
374
453
|
/**
|
|
375
454
|
* DescribeApplications请求参数结构体
|
|
376
455
|
*/
|
|
@@ -401,19 +480,17 @@ export interface DescribeApplicationsRequest {
|
|
|
401
480
|
Order?: string;
|
|
402
481
|
}
|
|
403
482
|
/**
|
|
404
|
-
*
|
|
483
|
+
* InquirePriceUpdateServiceConfigs返回参数结构体
|
|
405
484
|
*/
|
|
406
|
-
export interface
|
|
485
|
+
export interface InquirePriceUpdateServiceConfigsResponse {
|
|
407
486
|
/**
|
|
408
|
-
*
|
|
409
|
-
|
|
487
|
+
* 发货参数对应的价格组合。
|
|
410
488
|
*/
|
|
411
|
-
|
|
489
|
+
Price?: ServicePriceDetail;
|
|
412
490
|
/**
|
|
413
|
-
*
|
|
414
|
-
|
|
491
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
415
492
|
*/
|
|
416
|
-
|
|
493
|
+
RequestId?: string;
|
|
417
494
|
}
|
|
418
495
|
/**
|
|
419
496
|
* CreateApplication请求参数结构体
|
|
@@ -482,6 +559,15 @@ export interface RunInstancesRequest {
|
|
|
482
559
|
*/
|
|
483
560
|
DryRun?: boolean;
|
|
484
561
|
}
|
|
562
|
+
/**
|
|
563
|
+
* DescribeDeployTemplates请求参数结构体
|
|
564
|
+
*/
|
|
565
|
+
export interface DescribeDeployTemplatesRequest {
|
|
566
|
+
/**
|
|
567
|
+
* 模型ID
|
|
568
|
+
*/
|
|
569
|
+
ModelId: string;
|
|
570
|
+
}
|
|
485
571
|
/**
|
|
486
572
|
* 容器信息
|
|
487
573
|
*/
|
|
@@ -526,6 +612,19 @@ export interface DescribeInstancesResponse {
|
|
|
526
612
|
*/
|
|
527
613
|
RequestId?: string;
|
|
528
614
|
}
|
|
615
|
+
/**
|
|
616
|
+
* 环境变量键值对
|
|
617
|
+
*/
|
|
618
|
+
export interface EnvParam {
|
|
619
|
+
/**
|
|
620
|
+
* 环境变量名
|
|
621
|
+
*/
|
|
622
|
+
Name?: string;
|
|
623
|
+
/**
|
|
624
|
+
* 环境变量值
|
|
625
|
+
*/
|
|
626
|
+
Value?: string;
|
|
627
|
+
}
|
|
529
628
|
/**
|
|
530
629
|
* UpdateServiceConfigs返回参数结构体
|
|
531
630
|
*/
|
|
@@ -598,17 +697,17 @@ export interface ServiceDetail {
|
|
|
598
697
|
HyperParam?: HyperParam;
|
|
599
698
|
}
|
|
600
699
|
/**
|
|
601
|
-
*
|
|
700
|
+
* 某服务的登录配置
|
|
602
701
|
*/
|
|
603
|
-
export interface
|
|
702
|
+
export interface LoginSetting {
|
|
604
703
|
/**
|
|
605
|
-
*
|
|
704
|
+
* 服务名称
|
|
606
705
|
*/
|
|
607
|
-
|
|
706
|
+
ServiceName?: string;
|
|
608
707
|
/**
|
|
609
|
-
*
|
|
708
|
+
* 服务登录url
|
|
610
709
|
*/
|
|
611
|
-
|
|
710
|
+
Url?: string;
|
|
612
711
|
}
|
|
613
712
|
/**
|
|
614
713
|
* 地域列表
|
|
@@ -664,6 +763,43 @@ export interface COSStorage {
|
|
|
664
763
|
*/
|
|
665
764
|
URI?: string;
|
|
666
765
|
}
|
|
766
|
+
/**
|
|
767
|
+
* 模型详情
|
|
768
|
+
*/
|
|
769
|
+
export interface ModelDetail {
|
|
770
|
+
/**
|
|
771
|
+
* 模型名称
|
|
772
|
+
*/
|
|
773
|
+
ModelName?: string;
|
|
774
|
+
/**
|
|
775
|
+
* 模型ID
|
|
776
|
+
*/
|
|
777
|
+
ModelId?: string;
|
|
778
|
+
/**
|
|
779
|
+
* 应用描述
|
|
780
|
+
*/
|
|
781
|
+
Description?: string;
|
|
782
|
+
/**
|
|
783
|
+
* 官方社区链接
|
|
784
|
+
*/
|
|
785
|
+
CommunityUrl?: string;
|
|
786
|
+
/**
|
|
787
|
+
* 最佳实践链接
|
|
788
|
+
*/
|
|
789
|
+
GuideUrl?: string;
|
|
790
|
+
/**
|
|
791
|
+
* 模型状态
|
|
792
|
+
*/
|
|
793
|
+
ModelState?: string;
|
|
794
|
+
/**
|
|
795
|
+
* 应用对应的标签,如机器学习
|
|
796
|
+
*/
|
|
797
|
+
Tags?: Array<string>;
|
|
798
|
+
/**
|
|
799
|
+
* 配置环境
|
|
800
|
+
*/
|
|
801
|
+
ConfigEnvironment?: string;
|
|
802
|
+
}
|
|
667
803
|
/**
|
|
668
804
|
* DescribeServiceLoginSettings请求参数结构体
|
|
669
805
|
*/
|
|
@@ -761,17 +897,29 @@ export interface DescribeServicesRequest {
|
|
|
761
897
|
Offset?: number;
|
|
762
898
|
}
|
|
763
899
|
/**
|
|
764
|
-
*
|
|
900
|
+
* DeployInferService请求参数结构体
|
|
765
901
|
*/
|
|
766
|
-
export interface
|
|
902
|
+
export interface DeployInferServiceRequest {
|
|
767
903
|
/**
|
|
768
|
-
*
|
|
904
|
+
* 服务元数据信息,如服务名
|
|
769
905
|
*/
|
|
770
|
-
|
|
906
|
+
ServiceMetaData?: ServiceMetaData;
|
|
771
907
|
/**
|
|
772
|
-
*
|
|
908
|
+
* 资源相关信息
|
|
773
909
|
*/
|
|
774
|
-
|
|
910
|
+
ComputeInfo?: ComputeInfo;
|
|
911
|
+
/**
|
|
912
|
+
* 服务部署信息
|
|
913
|
+
*/
|
|
914
|
+
DeploymentConfigs?: Array<DeploymentConfig>;
|
|
915
|
+
/**
|
|
916
|
+
* 服务超参数配置
|
|
917
|
+
*/
|
|
918
|
+
HyperParam?: HyperParam;
|
|
919
|
+
/**
|
|
920
|
+
* 网络设置
|
|
921
|
+
*/
|
|
922
|
+
NetworkSetting?: NetworkSetting;
|
|
775
923
|
}
|
|
776
924
|
/**
|
|
777
925
|
* 服务部署信息
|
|
@@ -812,6 +960,19 @@ export interface CreateMuskPromptResponse {
|
|
|
812
960
|
*/
|
|
813
961
|
RequestId?: string;
|
|
814
962
|
}
|
|
963
|
+
/**
|
|
964
|
+
* 服务元数据信息,如服务名
|
|
965
|
+
*/
|
|
966
|
+
export interface ServiceMetaData {
|
|
967
|
+
/**
|
|
968
|
+
* 服务名称
|
|
969
|
+
*/
|
|
970
|
+
ServiceName?: string;
|
|
971
|
+
/**
|
|
972
|
+
* 收费类型
|
|
973
|
+
*/
|
|
974
|
+
ServiceChargeType?: string;
|
|
975
|
+
}
|
|
815
976
|
/**
|
|
816
977
|
* 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
817
978
|
|
|
@@ -828,6 +989,35 @@ export interface Filter {
|
|
|
828
989
|
*/
|
|
829
990
|
Values: Array<string>;
|
|
830
991
|
}
|
|
992
|
+
/**
|
|
993
|
+
* CreateInferServiceByTemplate请求参数结构体
|
|
994
|
+
*/
|
|
995
|
+
export interface CreateInferServiceByTemplateRequest {
|
|
996
|
+
/**
|
|
997
|
+
* 模版ID
|
|
998
|
+
*/
|
|
999
|
+
TemplateId: string;
|
|
1000
|
+
/**
|
|
1001
|
+
* 服务名称
|
|
1002
|
+
*/
|
|
1003
|
+
ServiceName?: string;
|
|
1004
|
+
/**
|
|
1005
|
+
* 副本数
|
|
1006
|
+
*/
|
|
1007
|
+
Replicas?: number;
|
|
1008
|
+
/**
|
|
1009
|
+
* 付费方式,POSTPAID_BY_HOUR按量后付费
|
|
1010
|
+
*/
|
|
1011
|
+
ServiceChargeType?: string;
|
|
1012
|
+
/**
|
|
1013
|
+
* 描述了服务的超参数配置
|
|
1014
|
+
*/
|
|
1015
|
+
HyperParam?: HyperParam;
|
|
1016
|
+
/**
|
|
1017
|
+
* 网络设置
|
|
1018
|
+
*/
|
|
1019
|
+
NetworkSetting?: NetworkSetting;
|
|
1020
|
+
}
|
|
831
1021
|
/**
|
|
832
1022
|
* 应用信息
|
|
833
1023
|
*/
|
|
@@ -994,6 +1184,23 @@ export interface Instance {
|
|
|
994
1184
|
*/
|
|
995
1185
|
OSType?: string;
|
|
996
1186
|
}
|
|
1187
|
+
/**
|
|
1188
|
+
* DescribeModels返回参数结构体
|
|
1189
|
+
*/
|
|
1190
|
+
export interface DescribeModelsResponse {
|
|
1191
|
+
/**
|
|
1192
|
+
* 模型总数
|
|
1193
|
+
*/
|
|
1194
|
+
TotalCount?: number;
|
|
1195
|
+
/**
|
|
1196
|
+
* 分页返回的模型列表
|
|
1197
|
+
*/
|
|
1198
|
+
ModelSet?: Array<ModelDetail>;
|
|
1199
|
+
/**
|
|
1200
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1201
|
+
*/
|
|
1202
|
+
RequestId?: string;
|
|
1203
|
+
}
|
|
997
1204
|
/**
|
|
998
1205
|
* 分实例价格
|
|
999
1206
|
*/
|
|
@@ -1015,6 +1222,27 @@ export interface ItemPriceDetail {
|
|
|
1015
1222
|
*/
|
|
1016
1223
|
InstanceTotalPrice?: ItemPrice;
|
|
1017
1224
|
}
|
|
1225
|
+
/**
|
|
1226
|
+
* DescribeModels请求参数结构体
|
|
1227
|
+
*/
|
|
1228
|
+
export interface DescribeModelsRequest {
|
|
1229
|
+
/**
|
|
1230
|
+
* 模型id
|
|
1231
|
+
*/
|
|
1232
|
+
ModelIds?: Array<string>;
|
|
1233
|
+
/**
|
|
1234
|
+
* 过滤器。Name的可选值有scene-id
|
|
1235
|
+
*/
|
|
1236
|
+
Filters?: Array<Filter>;
|
|
1237
|
+
/**
|
|
1238
|
+
* 偏移量,不得小于0,默认为0
|
|
1239
|
+
*/
|
|
1240
|
+
Offset?: number;
|
|
1241
|
+
/**
|
|
1242
|
+
* 返回量,不得大于100,默认为20
|
|
1243
|
+
*/
|
|
1244
|
+
Limit?: number;
|
|
1245
|
+
}
|
|
1018
1246
|
/**
|
|
1019
1247
|
* CreateMuskPrompt请求参数结构体
|
|
1020
1248
|
*/
|
|
@@ -1033,9 +1261,22 @@ export interface CreateMuskPromptRequest {
|
|
|
1033
1261
|
PromptParams: string;
|
|
1034
1262
|
}
|
|
1035
1263
|
/**
|
|
1036
|
-
*
|
|
1264
|
+
* DescribeApplications返回参数结构体
|
|
1037
1265
|
*/
|
|
1038
|
-
export
|
|
1266
|
+
export interface DescribeApplicationsResponse {
|
|
1267
|
+
/**
|
|
1268
|
+
* 应用总数
|
|
1269
|
+
*/
|
|
1270
|
+
TotalCount?: number;
|
|
1271
|
+
/**
|
|
1272
|
+
* 分页返回的应用列表
|
|
1273
|
+
*/
|
|
1274
|
+
ApplicationSet?: Array<ApplicationInfo>;
|
|
1275
|
+
/**
|
|
1276
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1277
|
+
*/
|
|
1278
|
+
RequestId?: string;
|
|
1279
|
+
}
|
|
1039
1280
|
/**
|
|
1040
1281
|
* 套餐价格
|
|
1041
1282
|
*/
|
|
@@ -1120,6 +1361,31 @@ export interface DescribeInstanceNetworkStatusRequest {
|
|
|
1120
1361
|
*/
|
|
1121
1362
|
InstanceIds: Array<string>;
|
|
1122
1363
|
}
|
|
1364
|
+
/**
|
|
1365
|
+
* 模板详情
|
|
1366
|
+
*/
|
|
1367
|
+
export interface TemplateDetail {
|
|
1368
|
+
/**
|
|
1369
|
+
* 模板id
|
|
1370
|
+
*/
|
|
1371
|
+
TemplateId?: string;
|
|
1372
|
+
/**
|
|
1373
|
+
* 部署方式
|
|
1374
|
+
*/
|
|
1375
|
+
DeployMode?: string;
|
|
1376
|
+
/**
|
|
1377
|
+
* 推理引擎
|
|
1378
|
+
*/
|
|
1379
|
+
EngineType?: string;
|
|
1380
|
+
/**
|
|
1381
|
+
* 算力详情
|
|
1382
|
+
*/
|
|
1383
|
+
ComputeSet?: Array<ComputeDetail>;
|
|
1384
|
+
/**
|
|
1385
|
+
* 当前部署模板所支持的增强功能
|
|
1386
|
+
*/
|
|
1387
|
+
SupportFunc?: Array<string>;
|
|
1388
|
+
}
|
|
1123
1389
|
/**
|
|
1124
1390
|
* 登录服务详情
|
|
1125
1391
|
*/
|
|
@@ -110,6 +110,7 @@ export { facefusion } from "./facefusion";
|
|
|
110
110
|
export { faceid } from "./faceid";
|
|
111
111
|
export { fmu } from "./fmu";
|
|
112
112
|
export { ft } from "./ft";
|
|
113
|
+
export { ga2 } from "./ga2";
|
|
113
114
|
export { gaap } from "./gaap";
|
|
114
115
|
export { gme } from "./gme";
|
|
115
116
|
export { goosefs } from "./goosefs";
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.cdwpg = exports.cdwdoris = exports.cdwch = exports.cds = exports.cdn = exports.cdc = exports.cdb = exports.ccc = exports.cbs = exports.cat = exports.car = exports.captcha = exports.cam = exports.ca = exports.btoe = exports.bsca = exports.bri = exports.bpaas = exports.bmvpc = exports.bmlb = exports.bmeip = exports.bma = exports.bm = exports.bizlive = exports.billing = exports.bi = exports.bh = exports.bda = exports.batch = exports.ba = exports.asw = exports.asr = exports.as = exports.apm = exports.apigateway = exports.api = exports.ape = exports.antiddos = exports.anicloud = exports.ams = exports.ame = exports.aiart = exports.ai3d = exports.ags = exports.afc = exports.af = exports.advisor = exports.acp = exports.aca = exports.aai = void 0;
|
|
4
4
|
exports.ecdn = exports.ecc = exports.eb = exports.dts = exports.dsgc = exports.ds = exports.drm = exports.domain = exports.dnspod = exports.dlc = exports.dcdb = exports.dc = exports.dbs = exports.dbdc = exports.dbbrain = exports.dayu = exports.dataagent = exports.dasb = exports.cynosdb = exports.cws = exports.cwp = exports.cvm = exports.ctsdb = exports.ctem = exports.csxg = exports.csip = exports.cpdp = exports.controlcenter = exports.config = exports.cms = exports.cmq = exports.cme = exports.cls = exports.cloudstudio = exports.cloudmate = exports.cloudhsm = exports.cloudaudit = exports.cloudapp = exports.clb = exports.ckafka = exports.cim = exports.cii = exports.ciam = exports.chdfs = exports.chc = exports.cfw = exports.cfs = exports.cfg = exports.cetcd = exports.cdz = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.yunsou = exports.yunjing = exports.yinsuda = exports.wss = exports.wsa = exports.wimgs = exports.weilingwith = exports.wedata = exports.wav = exports.waf = exports.vtc = exports.vrs = exports.vpc = exports.vod = exports.vms = exports.vm = exports.vdb = exports.vcube = exports.vclm = exports.vcg = exports.tts = exports.tsw = exports.tsi = exports.tsf = exports.tse = exports.trtc = exports.trro = exports.trp = exports.trocket = exports.trabbit = exports.tourism = exports.tmt = exports.tms = exports.tkgdq = exports.tke = exports.tiw = exports.tione = exports.tiia = exports.tia = exports.thpc = exports.teo = exports.tem = exports.tds = exports.tdmysql = exports.tdmq = exports.tdid = exports.tdcpg = exports.tdai = exports.tcss = void 0;
|
|
5
|
+
exports.mariadb = exports.mall = exports.lowcode = exports.lkeap = exports.lke = exports.live = exports.lighthouse = exports.lcic = exports.kms = exports.keewidb = exports.ivld = exports.iss = exports.irp = exports.iotvideoindustry = exports.iotvideo = exports.iotexplorer = exports.iotcloud = exports.iot = exports.ioa = exports.ims = exports.igtm = exports.ig = exports.ie = exports.icr = exports.ic = exports.iap = exports.iai = exports.hunyuan = exports.hcm = exports.hasim = exports.hai = exports.habo = exports.gwlb = exports.gs = exports.goosefs = exports.gme = exports.gaap = exports.ga2 = exports.ft = exports.fmu = exports.faceid = exports.facefusion = exports.evt = exports.essbasic = exports.ess = exports.es = exports.emr = exports.eis = exports.eiam = exports.ecm = void 0;
|
|
6
|
+
exports.tcm = exports.tchd = exports.tccatalog = exports.tcbr = exports.tcb = exports.tcaplusdb = exports.tbp = exports.tbaas = exports.tat = exports.tag = exports.taf = exports.svp = exports.sts = exports.ssm = exports.sslpod = exports.ssl = exports.ssa = exports.sqlserver = exports.soe = exports.sms = exports.smop = exports.smh = exports.ses = exports.securitylake = exports.scf = exports.rum = exports.region = exports.redis = exports.rce = exports.pts = exports.privatedns = exports.postgres = exports.partners = exports.organization = exports.omics = exports.ocr = exports.oceanus = exports.npp = exports.nlp = exports.msp = exports.ms = exports.mrs = exports.mqtt = exports.mps = exports.monitor = exports.mongodb = exports.mna = exports.mmps = exports.memcached = exports.market = void 0;
|
|
7
|
+
exports.yunsou = exports.yunjing = exports.yinsuda = exports.wss = exports.wsa = exports.wimgs = exports.weilingwith = exports.wedata = exports.wav = exports.waf = exports.vtc = exports.vrs = exports.vpc = exports.vod = exports.vms = exports.vm = exports.vdb = exports.vcube = exports.vclm = exports.vcg = exports.tts = exports.tsw = exports.tsi = exports.tsf = exports.tse = exports.trtc = exports.trro = exports.trp = exports.trocket = exports.trabbit = exports.tourism = exports.tmt = exports.tms = exports.tkgdq = exports.tke = exports.tiw = exports.tione = exports.tiia = exports.tia = exports.thpc = exports.teo = exports.tem = exports.tds = exports.tdmysql = exports.tdmq = exports.tdid = exports.tdcpg = exports.tdai = exports.tcss = exports.tcr = void 0;
|
|
8
8
|
var aai_1 = require("./aai");
|
|
9
9
|
Object.defineProperty(exports, "aai", { enumerable: true, get: function () { return aai_1.aai; } });
|
|
10
10
|
var aca_1 = require("./aca");
|
|
@@ -229,6 +229,8 @@ var fmu_1 = require("./fmu");
|
|
|
229
229
|
Object.defineProperty(exports, "fmu", { enumerable: true, get: function () { return fmu_1.fmu; } });
|
|
230
230
|
var ft_1 = require("./ft");
|
|
231
231
|
Object.defineProperty(exports, "ft", { enumerable: true, get: function () { return ft_1.ft; } });
|
|
232
|
+
var ga2_1 = require("./ga2");
|
|
233
|
+
Object.defineProperty(exports, "ga2", { enumerable: true, get: function () { return ga2_1.ga2; } });
|
|
232
234
|
var gaap_1 = require("./gaap");
|
|
233
235
|
Object.defineProperty(exports, "gaap", { enumerable: true, get: function () { return gaap_1.gaap; } });
|
|
234
236
|
var gme_1 = require("./gme");
|
|
@@ -1350,6 +1350,10 @@ export interface ModifyTWeSeeConfigRequest {
|
|
|
1350
1350
|
* 视频摘要配置参数,不传则不修改
|
|
1351
1351
|
*/
|
|
1352
1352
|
SummaryConfig?: VisionSummaryConfig;
|
|
1353
|
+
/**
|
|
1354
|
+
* 云存事件 ID 过滤规则配置,不传则不修改
|
|
1355
|
+
*/
|
|
1356
|
+
EventIdFilterConfig?: SeeEventIdFilterConfig;
|
|
1353
1357
|
}
|
|
1354
1358
|
/**
|
|
1355
1359
|
* DescribeGatewaySubDeviceList请求参数结构体
|
|
@@ -3889,6 +3893,19 @@ export interface DescribeProjectRequest {
|
|
|
3889
3893
|
*/
|
|
3890
3894
|
ProjectId: string;
|
|
3891
3895
|
}
|
|
3896
|
+
/**
|
|
3897
|
+
* TWeSee 处理云存事件 EventId 的过滤规则配置
|
|
3898
|
+
*/
|
|
3899
|
+
export interface SeeEventIdFilterConfig {
|
|
3900
|
+
/**
|
|
3901
|
+
* 包含的云存事件 ID 集合
|
|
3902
|
+
*/
|
|
3903
|
+
IncludeOnly?: Array<string>;
|
|
3904
|
+
/**
|
|
3905
|
+
* 排除的云存事件 ID 集合
|
|
3906
|
+
*/
|
|
3907
|
+
Exclude?: Array<string>;
|
|
3908
|
+
}
|
|
3892
3909
|
/**
|
|
3893
3910
|
* DescribeSubscribedTopicPolicy请求参数结构体
|
|
3894
3911
|
*/
|
|
@@ -6237,6 +6254,14 @@ export interface DescribeTWeSeeConfigResponse {
|
|
|
6237
6254
|
* 配置参数
|
|
6238
6255
|
*/
|
|
6239
6256
|
Config?: string;
|
|
6257
|
+
/**
|
|
6258
|
+
* 摘要配置参数
|
|
6259
|
+
*/
|
|
6260
|
+
SummaryConfig?: VisionSummaryConfig;
|
|
6261
|
+
/**
|
|
6262
|
+
* 云存事件 ID 过滤规则配置项
|
|
6263
|
+
*/
|
|
6264
|
+
EventIdFilterConfig?: SeeEventIdFilterConfig;
|
|
6240
6265
|
/**
|
|
6241
6266
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6242
6267
|
*/
|