tencentcloud-sdk-nodejs 4.0.450 → 4.0.452
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/CHANGELOG.md +263 -0
- package/SERVICE_CHANGELOG.md +271 -70
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bma/v20210624/bma_models.ts +100 -0
- package/src/services/ciam/v20220331/ciam_client.ts +1 -0
- package/src/services/ciam/v20220331/ciam_models.ts +130 -2
- package/src/services/ckafka/v20190819/ckafka_models.ts +1 -1
- package/src/services/cloudstudio/v20210524/cloudstudio_client.ts +4 -4
- package/src/services/cloudstudio/v20210524/cloudstudio_models.ts +5 -5
- package/src/services/cpdp/v20190820/cpdp_client.ts +24 -12
- package/src/services/cpdp/v20190820/cpdp_models.ts +48 -0
- package/src/services/cwp/v20180228/cwp_client.ts +4 -16
- package/src/services/cwp/v20180228/cwp_models.ts +28 -63
- package/src/services/es/v20180416/es_models.ts +10 -0
- package/src/services/oceanus/v20190422/oceanus_models.ts +6 -0
- package/src/services/ocr/v20181119/ocr_client.ts +1 -0
- package/src/services/ocr/v20181119/ocr_models.ts +1 -2
- package/src/services/tem/v20210701/tem_client.ts +60 -11
- package/src/services/tem/v20210701/tem_models.ts +318 -102
- package/src/services/tke/v20180525/tke_client.ts +2 -2
- package/src/services/tke/v20180525/tke_models.ts +29 -2
- package/src/services/trtc/v20190722/trtc_models.ts +2 -2
- package/src/services/tse/v20201207/tse_models.ts +7 -2
- package/src/services/vod/v20180717/vod_models.ts +2 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bma/v20210624/bma_models.d.ts +80 -0
- package/tencentcloud/services/ciam/v20220331/ciam_models.d.ts +106 -2
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
- package/tencentcloud/services/cloudstudio/v20210524/cloudstudio_client.d.ts +4 -4
- package/tencentcloud/services/cloudstudio/v20210524/cloudstudio_client.js +4 -4
- package/tencentcloud/services/cloudstudio/v20210524/cloudstudio_models.d.ts +5 -5
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +9 -5
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +12 -6
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +41 -0
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +2 -6
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +1 -7
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +25 -55
- package/tencentcloud/services/es/v20180416/es_models.d.ts +8 -0
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +5 -0
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -0
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +1 -0
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +1 -2
- package/tencentcloud/services/tem/v20210701/tem_client.d.ts +19 -3
- package/tencentcloud/services/tem/v20210701/tem_client.js +27 -3
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +277 -93
- package/tencentcloud/services/tke/v20180525/tke_client.d.ts +2 -2
- package/tencentcloud/services/tke/v20180525/tke_client.js +1 -1
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +25 -2
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +2 -2
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +6 -2
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +2 -0
- package/test/cpdp.v20190820.test.js +14 -4
- package/test/cwp.v20180228.test.js +0 -10
- package/test/tem.v20210701.test.js +42 -2
|
@@ -60,6 +60,11 @@ export interface NamespacePage {
|
|
|
60
60
|
* 页数
|
|
61
61
|
*/
|
|
62
62
|
Pages: number;
|
|
63
|
+
/**
|
|
64
|
+
* 当前条目
|
|
65
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
66
|
+
*/
|
|
67
|
+
Current: number;
|
|
63
68
|
}
|
|
64
69
|
/**
|
|
65
70
|
* DescribeApplicationInfo返回参数结构体
|
|
@@ -88,6 +93,27 @@ export interface ModifyIngressResponse {
|
|
|
88
93
|
*/
|
|
89
94
|
RequestId?: string;
|
|
90
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* DeleteApplicationService请求参数结构体
|
|
98
|
+
*/
|
|
99
|
+
export interface DeleteApplicationServiceRequest {
|
|
100
|
+
/**
|
|
101
|
+
* 服务id
|
|
102
|
+
*/
|
|
103
|
+
ApplicationId?: string;
|
|
104
|
+
/**
|
|
105
|
+
* 来源渠道
|
|
106
|
+
*/
|
|
107
|
+
SourceChannel?: number;
|
|
108
|
+
/**
|
|
109
|
+
* 环境ID
|
|
110
|
+
*/
|
|
111
|
+
EnvironmentId?: string;
|
|
112
|
+
/**
|
|
113
|
+
* 访问方式服务名
|
|
114
|
+
*/
|
|
115
|
+
ServiceName?: string;
|
|
116
|
+
}
|
|
91
117
|
/**
|
|
92
118
|
* RestartApplicationPod请求参数结构体
|
|
93
119
|
*/
|
|
@@ -495,29 +521,33 @@ export interface RevertDeployApplicationResponse {
|
|
|
495
521
|
RequestId?: string;
|
|
496
522
|
}
|
|
497
523
|
/**
|
|
498
|
-
*
|
|
524
|
+
* 分批发布策略配置
|
|
499
525
|
*/
|
|
500
|
-
export interface
|
|
526
|
+
export interface DeployStrategyConf {
|
|
501
527
|
/**
|
|
502
|
-
*
|
|
528
|
+
* 总分批数
|
|
503
529
|
*/
|
|
504
|
-
|
|
530
|
+
TotalBatchCount?: number;
|
|
505
531
|
/**
|
|
506
|
-
*
|
|
532
|
+
* beta分批实例数
|
|
507
533
|
*/
|
|
508
|
-
|
|
534
|
+
BetaBatchNum?: number;
|
|
509
535
|
/**
|
|
510
|
-
*
|
|
536
|
+
* 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的,3-首次发布
|
|
511
537
|
*/
|
|
512
|
-
|
|
538
|
+
DeployStrategyType?: number;
|
|
513
539
|
/**
|
|
514
|
-
*
|
|
540
|
+
* 每批暂停间隔
|
|
515
541
|
*/
|
|
516
|
-
|
|
542
|
+
BatchInterval?: number;
|
|
517
543
|
/**
|
|
518
|
-
*
|
|
544
|
+
* 最小可用实例数
|
|
519
545
|
*/
|
|
520
|
-
|
|
546
|
+
MinAvailable?: number;
|
|
547
|
+
/**
|
|
548
|
+
* 是否强制发布
|
|
549
|
+
*/
|
|
550
|
+
Force?: boolean;
|
|
521
551
|
}
|
|
522
552
|
/**
|
|
523
553
|
* DescribeApplications返回参数结构体
|
|
@@ -533,66 +563,29 @@ export interface DescribeApplicationsResponse {
|
|
|
533
563
|
RequestId?: string;
|
|
534
564
|
}
|
|
535
565
|
/**
|
|
536
|
-
*
|
|
566
|
+
* CreateCosToken请求参数结构体
|
|
537
567
|
*/
|
|
538
|
-
export interface
|
|
539
|
-
/**
|
|
540
|
-
* 环境ID
|
|
541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
542
|
-
*/
|
|
543
|
-
EnvironmentId: string;
|
|
544
|
-
/**
|
|
545
|
-
* 环境namespace
|
|
546
|
-
*/
|
|
547
|
-
ClusterNamespace: string;
|
|
548
|
-
/**
|
|
549
|
-
* ip version
|
|
550
|
-
*/
|
|
551
|
-
AddressIPVersion: string;
|
|
552
|
-
/**
|
|
553
|
-
* ingress name
|
|
554
|
-
*/
|
|
555
|
-
IngressName: string;
|
|
556
|
-
/**
|
|
557
|
-
* rules 配置
|
|
558
|
-
*/
|
|
559
|
-
Rules: Array<IngressRule>;
|
|
560
|
-
/**
|
|
561
|
-
* clb ID
|
|
562
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
563
|
-
*/
|
|
564
|
-
ClbId?: string;
|
|
565
|
-
/**
|
|
566
|
-
* tls 配置
|
|
567
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
568
|
-
*/
|
|
569
|
-
Tls?: Array<IngressTls>;
|
|
568
|
+
export interface CreateCosTokenRequest {
|
|
570
569
|
/**
|
|
571
|
-
*
|
|
572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
570
|
+
* 应用ID
|
|
573
571
|
*/
|
|
574
|
-
|
|
572
|
+
ApplicationId: string;
|
|
575
573
|
/**
|
|
576
|
-
*
|
|
577
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
574
|
+
* 包名
|
|
578
575
|
*/
|
|
579
|
-
|
|
576
|
+
PkgName: string;
|
|
580
577
|
/**
|
|
581
|
-
*
|
|
582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
578
|
+
* optType 1上传 2查询
|
|
583
579
|
*/
|
|
584
|
-
|
|
580
|
+
OptType: number;
|
|
585
581
|
/**
|
|
586
|
-
*
|
|
582
|
+
* 来源 channel
|
|
587
583
|
*/
|
|
588
|
-
|
|
584
|
+
SourceChannel?: number;
|
|
589
585
|
/**
|
|
590
|
-
*
|
|
591
|
-
- AUTO(自动重定向http到https)
|
|
592
|
-
- NONE(不使用重定向)
|
|
593
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
586
|
+
* 充当deployVersion入参
|
|
594
587
|
*/
|
|
595
|
-
|
|
588
|
+
TimeVersion?: string;
|
|
596
589
|
}
|
|
597
590
|
/**
|
|
598
591
|
* DescribeEnvironments请求参数结构体
|
|
@@ -758,6 +751,19 @@ export interface NodeInfo {
|
|
|
758
751
|
*/
|
|
759
752
|
Cidr: string;
|
|
760
753
|
}
|
|
754
|
+
/**
|
|
755
|
+
* DescribeApplicationServiceList返回参数结构体
|
|
756
|
+
*/
|
|
757
|
+
export interface DescribeApplicationServiceListResponse {
|
|
758
|
+
/**
|
|
759
|
+
* 应用 EKS Service 列表
|
|
760
|
+
*/
|
|
761
|
+
Result: EksService;
|
|
762
|
+
/**
|
|
763
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
764
|
+
*/
|
|
765
|
+
RequestId?: string;
|
|
766
|
+
}
|
|
761
767
|
/**
|
|
762
768
|
* DescribeLogConfig请求参数结构体
|
|
763
769
|
*/
|
|
@@ -864,33 +870,29 @@ export interface DescribeEnvironmentStatusResponse {
|
|
|
864
870
|
RequestId?: string;
|
|
865
871
|
}
|
|
866
872
|
/**
|
|
867
|
-
*
|
|
873
|
+
* 弹性伸缩配置
|
|
868
874
|
*/
|
|
869
|
-
export interface
|
|
870
|
-
/**
|
|
871
|
-
* 总分批数
|
|
872
|
-
*/
|
|
873
|
-
TotalBatchCount?: number;
|
|
875
|
+
export interface EsInfo {
|
|
874
876
|
/**
|
|
875
|
-
*
|
|
877
|
+
* 最小实例数
|
|
876
878
|
*/
|
|
877
|
-
|
|
879
|
+
MinAliveInstances: number;
|
|
878
880
|
/**
|
|
879
|
-
*
|
|
881
|
+
* 最大实例数
|
|
880
882
|
*/
|
|
881
|
-
|
|
883
|
+
MaxAliveInstances: number;
|
|
882
884
|
/**
|
|
883
|
-
*
|
|
885
|
+
* 弹性策略,1:cpu,2:内存
|
|
884
886
|
*/
|
|
885
|
-
|
|
887
|
+
EsStrategy: number;
|
|
886
888
|
/**
|
|
887
|
-
*
|
|
889
|
+
* 弹性扩缩容条件值
|
|
888
890
|
*/
|
|
889
|
-
|
|
891
|
+
Threshold: number;
|
|
890
892
|
/**
|
|
891
|
-
*
|
|
893
|
+
* 版本Id
|
|
892
894
|
*/
|
|
893
|
-
|
|
895
|
+
VersionId?: string;
|
|
894
896
|
}
|
|
895
897
|
/**
|
|
896
898
|
* DescribeApplicationPods返回参数结构体
|
|
@@ -1369,29 +1371,66 @@ export interface ServicePortMapping {
|
|
|
1369
1371
|
PortMappingItemList?: Array<ServicePortMappingItem>;
|
|
1370
1372
|
}
|
|
1371
1373
|
/**
|
|
1372
|
-
*
|
|
1374
|
+
* Ingress 配置
|
|
1373
1375
|
*/
|
|
1374
|
-
export interface
|
|
1376
|
+
export interface IngressInfo {
|
|
1375
1377
|
/**
|
|
1376
|
-
*
|
|
1378
|
+
* 环境ID
|
|
1379
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1377
1380
|
*/
|
|
1378
|
-
|
|
1381
|
+
EnvironmentId: string;
|
|
1379
1382
|
/**
|
|
1380
|
-
*
|
|
1383
|
+
* 环境namespace
|
|
1381
1384
|
*/
|
|
1382
|
-
|
|
1385
|
+
ClusterNamespace: string;
|
|
1383
1386
|
/**
|
|
1384
|
-
*
|
|
1387
|
+
* ip version
|
|
1385
1388
|
*/
|
|
1386
|
-
|
|
1389
|
+
AddressIPVersion: string;
|
|
1387
1390
|
/**
|
|
1388
|
-
*
|
|
1391
|
+
* ingress name
|
|
1389
1392
|
*/
|
|
1390
|
-
|
|
1393
|
+
IngressName: string;
|
|
1391
1394
|
/**
|
|
1392
|
-
*
|
|
1395
|
+
* rules 配置
|
|
1393
1396
|
*/
|
|
1394
|
-
|
|
1397
|
+
Rules: Array<IngressRule>;
|
|
1398
|
+
/**
|
|
1399
|
+
* clb ID
|
|
1400
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1401
|
+
*/
|
|
1402
|
+
ClbId?: string;
|
|
1403
|
+
/**
|
|
1404
|
+
* tls 配置
|
|
1405
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1406
|
+
*/
|
|
1407
|
+
Tls?: Array<IngressTls>;
|
|
1408
|
+
/**
|
|
1409
|
+
* 环境集群ID
|
|
1410
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1411
|
+
*/
|
|
1412
|
+
ClusterId?: string;
|
|
1413
|
+
/**
|
|
1414
|
+
* clb ip
|
|
1415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1416
|
+
*/
|
|
1417
|
+
Vip?: string;
|
|
1418
|
+
/**
|
|
1419
|
+
* 创建时间
|
|
1420
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1421
|
+
*/
|
|
1422
|
+
CreateTime?: string;
|
|
1423
|
+
/**
|
|
1424
|
+
* 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
|
|
1425
|
+
*/
|
|
1426
|
+
Mixed?: boolean;
|
|
1427
|
+
/**
|
|
1428
|
+
* 重定向模式,可选值:
|
|
1429
|
+
- AUTO(自动重定向http到https)
|
|
1430
|
+
- NONE(不使用重定向)
|
|
1431
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1432
|
+
*/
|
|
1433
|
+
RewriteType?: string;
|
|
1395
1434
|
}
|
|
1396
1435
|
/**
|
|
1397
1436
|
* ModifyApplicationAutoscaler请求参数结构体
|
|
@@ -1444,6 +1483,21 @@ export interface ModifyIngressRequest {
|
|
|
1444
1483
|
*/
|
|
1445
1484
|
SourceChannel?: number;
|
|
1446
1485
|
}
|
|
1486
|
+
/**
|
|
1487
|
+
* 标签
|
|
1488
|
+
*/
|
|
1489
|
+
export interface Tag {
|
|
1490
|
+
/**
|
|
1491
|
+
* 标签键
|
|
1492
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1493
|
+
*/
|
|
1494
|
+
TagKey?: string;
|
|
1495
|
+
/**
|
|
1496
|
+
* 标签值
|
|
1497
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1498
|
+
*/
|
|
1499
|
+
TagValue?: string;
|
|
1500
|
+
}
|
|
1447
1501
|
/**
|
|
1448
1502
|
* 开启prometheus监控配置
|
|
1449
1503
|
*/
|
|
@@ -1610,6 +1664,19 @@ export interface DescribeApplicationsStatusRequest {
|
|
|
1610
1664
|
*/
|
|
1611
1665
|
EnvironmentId?: string;
|
|
1612
1666
|
}
|
|
1667
|
+
/**
|
|
1668
|
+
* DescribeIngress返回参数结构体
|
|
1669
|
+
*/
|
|
1670
|
+
export interface DescribeIngressResponse {
|
|
1671
|
+
/**
|
|
1672
|
+
* Ingress 规则配置
|
|
1673
|
+
*/
|
|
1674
|
+
Result: IngressInfo;
|
|
1675
|
+
/**
|
|
1676
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1677
|
+
*/
|
|
1678
|
+
RequestId?: string;
|
|
1679
|
+
}
|
|
1613
1680
|
/**
|
|
1614
1681
|
* 应用实例
|
|
1615
1682
|
*/
|
|
@@ -2267,6 +2334,23 @@ export interface CronHorizontalAutoscaler {
|
|
|
2267
2334
|
*/
|
|
2268
2335
|
Priority?: number;
|
|
2269
2336
|
}
|
|
2337
|
+
/**
|
|
2338
|
+
* DescribeApplicationServiceList请求参数结构体
|
|
2339
|
+
*/
|
|
2340
|
+
export interface DescribeApplicationServiceListRequest {
|
|
2341
|
+
/**
|
|
2342
|
+
* namespace id
|
|
2343
|
+
*/
|
|
2344
|
+
EnvironmentId: string;
|
|
2345
|
+
/**
|
|
2346
|
+
* 服务ID
|
|
2347
|
+
*/
|
|
2348
|
+
ApplicationId: string;
|
|
2349
|
+
/**
|
|
2350
|
+
* xx
|
|
2351
|
+
*/
|
|
2352
|
+
SourceChannel?: number;
|
|
2353
|
+
}
|
|
2270
2354
|
/**
|
|
2271
2355
|
* DescribeDeployApplicationDetail返回参数结构体
|
|
2272
2356
|
*/
|
|
@@ -2375,6 +2459,31 @@ export interface TemNamespaceInfo {
|
|
|
2375
2459
|
* 环境锁,1为上锁,0则为上锁
|
|
2376
2460
|
*/
|
|
2377
2461
|
Locked: number;
|
|
2462
|
+
/**
|
|
2463
|
+
* 用户AppId
|
|
2464
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2465
|
+
*/
|
|
2466
|
+
AppId: string;
|
|
2467
|
+
/**
|
|
2468
|
+
* 用户Uin
|
|
2469
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2470
|
+
*/
|
|
2471
|
+
Uin: string;
|
|
2472
|
+
/**
|
|
2473
|
+
* 用户SubAccountUin
|
|
2474
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2475
|
+
*/
|
|
2476
|
+
SubAccountUin: string;
|
|
2477
|
+
/**
|
|
2478
|
+
* 集群ID
|
|
2479
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2480
|
+
*/
|
|
2481
|
+
ClusterId: string;
|
|
2482
|
+
/**
|
|
2483
|
+
* 标签
|
|
2484
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2485
|
+
*/
|
|
2486
|
+
Tags: Array<Tag>;
|
|
2378
2487
|
}
|
|
2379
2488
|
/**
|
|
2380
2489
|
* CreateApplicationAutoscaler请求参数结构体
|
|
@@ -2397,6 +2506,20 @@ export interface CreateApplicationAutoscalerRequest {
|
|
|
2397
2506
|
*/
|
|
2398
2507
|
Autoscaler?: Autoscaler;
|
|
2399
2508
|
}
|
|
2509
|
+
/**
|
|
2510
|
+
* DeleteApplicationService返回参数结构体
|
|
2511
|
+
*/
|
|
2512
|
+
export interface DeleteApplicationServiceResponse {
|
|
2513
|
+
/**
|
|
2514
|
+
* 是否成功
|
|
2515
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2516
|
+
*/
|
|
2517
|
+
Result: boolean;
|
|
2518
|
+
/**
|
|
2519
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2520
|
+
*/
|
|
2521
|
+
RequestId?: string;
|
|
2522
|
+
}
|
|
2400
2523
|
/**
|
|
2401
2524
|
* 配置
|
|
2402
2525
|
*/
|
|
@@ -2495,6 +2618,31 @@ export interface DescribeConfigDataListResponse {
|
|
|
2495
2618
|
*/
|
|
2496
2619
|
RequestId?: string;
|
|
2497
2620
|
}
|
|
2621
|
+
/**
|
|
2622
|
+
* ModifyApplicationService请求参数结构体
|
|
2623
|
+
*/
|
|
2624
|
+
export interface ModifyApplicationServiceRequest {
|
|
2625
|
+
/**
|
|
2626
|
+
* 服务id
|
|
2627
|
+
*/
|
|
2628
|
+
ApplicationId: string;
|
|
2629
|
+
/**
|
|
2630
|
+
* 环境ID
|
|
2631
|
+
*/
|
|
2632
|
+
EnvironmentId: string;
|
|
2633
|
+
/**
|
|
2634
|
+
* 来源渠道
|
|
2635
|
+
*/
|
|
2636
|
+
SourceChannel?: number;
|
|
2637
|
+
/**
|
|
2638
|
+
* 全量访问方式设置
|
|
2639
|
+
*/
|
|
2640
|
+
Service?: EksService;
|
|
2641
|
+
/**
|
|
2642
|
+
* 单条访问方式设置
|
|
2643
|
+
*/
|
|
2644
|
+
Data?: ServicePortMapping;
|
|
2645
|
+
}
|
|
2498
2646
|
/**
|
|
2499
2647
|
* DescribePagedLogConfigList返回参数结构体
|
|
2500
2648
|
*/
|
|
@@ -3097,6 +3245,27 @@ export interface DescribeRunPodPage {
|
|
|
3097
3245
|
*/
|
|
3098
3246
|
PodList: Array<RunVersionPod>;
|
|
3099
3247
|
}
|
|
3248
|
+
/**
|
|
3249
|
+
* CreateApplicationService请求参数结构体
|
|
3250
|
+
*/
|
|
3251
|
+
export interface CreateApplicationServiceRequest {
|
|
3252
|
+
/**
|
|
3253
|
+
* 服务id
|
|
3254
|
+
*/
|
|
3255
|
+
ApplicationId: string;
|
|
3256
|
+
/**
|
|
3257
|
+
* 环境ID
|
|
3258
|
+
*/
|
|
3259
|
+
EnvironmentId: string;
|
|
3260
|
+
/**
|
|
3261
|
+
* 来源渠道
|
|
3262
|
+
*/
|
|
3263
|
+
SourceChannel?: number;
|
|
3264
|
+
/**
|
|
3265
|
+
* 访问方式详情
|
|
3266
|
+
*/
|
|
3267
|
+
Service?: ServicePortMapping;
|
|
3268
|
+
}
|
|
3100
3269
|
/**
|
|
3101
3270
|
* ModifyApplicationReplicas返回参数结构体
|
|
3102
3271
|
*/
|
|
@@ -3199,13 +3368,14 @@ export interface IngressRuleBackend {
|
|
|
3199
3368
|
ServicePort: number;
|
|
3200
3369
|
}
|
|
3201
3370
|
/**
|
|
3202
|
-
*
|
|
3371
|
+
* CreateApplicationService返回参数结构体
|
|
3203
3372
|
*/
|
|
3204
|
-
export interface
|
|
3373
|
+
export interface CreateApplicationServiceResponse {
|
|
3205
3374
|
/**
|
|
3206
|
-
*
|
|
3375
|
+
* 是否成功
|
|
3376
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3207
3377
|
*/
|
|
3208
|
-
Result:
|
|
3378
|
+
Result: boolean;
|
|
3209
3379
|
/**
|
|
3210
3380
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3211
3381
|
*/
|
|
@@ -3371,6 +3541,20 @@ export interface HorizontalAutoscaler {
|
|
|
3371
3541
|
*/
|
|
3372
3542
|
Enabled?: boolean;
|
|
3373
3543
|
}
|
|
3544
|
+
/**
|
|
3545
|
+
* ModifyApplicationService返回参数结构体
|
|
3546
|
+
*/
|
|
3547
|
+
export interface ModifyApplicationServiceResponse {
|
|
3548
|
+
/**
|
|
3549
|
+
* 是否成功
|
|
3550
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3551
|
+
*/
|
|
3552
|
+
Result: boolean;
|
|
3553
|
+
/**
|
|
3554
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3555
|
+
*/
|
|
3556
|
+
RequestId?: string;
|
|
3557
|
+
}
|
|
3374
3558
|
/**
|
|
3375
3559
|
* 服务端口映射
|
|
3376
3560
|
*/
|
|
@@ -104,9 +104,9 @@ export declare class Client extends AbstractClient {
|
|
|
104
104
|
*/
|
|
105
105
|
DescribeTKEEdgeScript(req: DescribeTKEEdgeScriptRequest, cb?: (error: string, rep: DescribeTKEEdgeScriptResponse) => void): Promise<DescribeTKEEdgeScriptResponse>;
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
107
|
+
* 边缘计算支持版本和k8s版本
|
|
108
108
|
*/
|
|
109
|
-
DescribeAvailableTKEEdgeVersion(req
|
|
109
|
+
DescribeAvailableTKEEdgeVersion(req: DescribeAvailableTKEEdgeVersionRequest, cb?: (error: string, rep: DescribeAvailableTKEEdgeVersionResponse) => void): Promise<DescribeAvailableTKEEdgeVersionResponse>;
|
|
110
110
|
/**
|
|
111
111
|
* 查询边缘集群列表
|
|
112
112
|
*/
|
|
@@ -172,7 +172,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
172
172
|
return this.request("DescribeTKEEdgeScript", req, cb);
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* 边缘计算支持版本和k8s版本
|
|
176
176
|
*/
|
|
177
177
|
async DescribeAvailableTKEEdgeVersion(req, cb) {
|
|
178
178
|
return this.request("DescribeAvailableTKEEdgeVersion", req, cb);
|
|
@@ -2800,7 +2800,12 @@ export interface DescribeTKEEdgeClustersResponse {
|
|
|
2800
2800
|
/**
|
|
2801
2801
|
* DescribeAvailableTKEEdgeVersion请求参数结构体
|
|
2802
2802
|
*/
|
|
2803
|
-
export
|
|
2803
|
+
export interface DescribeAvailableTKEEdgeVersionRequest {
|
|
2804
|
+
/**
|
|
2805
|
+
* 填写ClusterId获取当前集群各个组件版本和最新版本
|
|
2806
|
+
*/
|
|
2807
|
+
ClusterId?: string;
|
|
2808
|
+
}
|
|
2804
2809
|
/**
|
|
2805
2810
|
* DeleteClusterAsGroups请求参数结构体
|
|
2806
2811
|
*/
|
|
@@ -7270,6 +7275,14 @@ export interface CreateTKEEdgeClusterRequest {
|
|
|
7270
7275
|
* 集群计费方式
|
|
7271
7276
|
*/
|
|
7272
7277
|
ChargeType?: string;
|
|
7278
|
+
/**
|
|
7279
|
+
* 边缘集群版本,此版本区别于k8s版本,是整个集群各组件版本集合
|
|
7280
|
+
*/
|
|
7281
|
+
EdgeVersion?: string;
|
|
7282
|
+
/**
|
|
7283
|
+
* 边缘组件镜像仓库前缀
|
|
7284
|
+
*/
|
|
7285
|
+
RegistryPrefix?: string;
|
|
7273
7286
|
}
|
|
7274
7287
|
/**
|
|
7275
7288
|
* CreateEKSCluster返回参数结构体
|
|
@@ -7313,7 +7326,17 @@ export interface DescribeAvailableTKEEdgeVersionResponse {
|
|
|
7313
7326
|
/**
|
|
7314
7327
|
* 版本列表
|
|
7315
7328
|
*/
|
|
7316
|
-
Versions
|
|
7329
|
+
Versions: Array<string>;
|
|
7330
|
+
/**
|
|
7331
|
+
* 边缘集群最新版本
|
|
7332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7333
|
+
*/
|
|
7334
|
+
EdgeVersionLatest: string;
|
|
7335
|
+
/**
|
|
7336
|
+
* 边缘集群当前版本
|
|
7337
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7338
|
+
*/
|
|
7339
|
+
EdgeVersionCurrent: string;
|
|
7317
7340
|
/**
|
|
7318
7341
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7319
7342
|
*/
|
|
@@ -556,11 +556,11 @@ export interface DescribeRoomInfoRequest {
|
|
|
556
556
|
*/
|
|
557
557
|
export interface StorageParams {
|
|
558
558
|
/**
|
|
559
|
-
*
|
|
559
|
+
* 第三方云存储的账号信息(CloudStorage参数暂不可用,请使用CloudVod参数存储至云点播)。
|
|
560
560
|
*/
|
|
561
561
|
CloudStorage?: CloudStorage;
|
|
562
562
|
/**
|
|
563
|
-
*
|
|
563
|
+
* 【必填】腾讯云云点播的账号信息,目前仅支持存储至腾讯云点播VOD。
|
|
564
564
|
*/
|
|
565
565
|
CloudVod?: CloudVod;
|
|
566
566
|
}
|
|
@@ -146,13 +146,17 @@ export interface DescribeCloudNativeAPIGatewayNodesRequest {
|
|
|
146
146
|
*/
|
|
147
147
|
GatewayId: string;
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
149
|
+
* 实例分组id
|
|
150
150
|
*/
|
|
151
|
-
|
|
151
|
+
GroupId?: string;
|
|
152
152
|
/**
|
|
153
153
|
* 翻页获取多少个
|
|
154
154
|
*/
|
|
155
155
|
Limit?: number;
|
|
156
|
+
/**
|
|
157
|
+
* 翻页从第几个开始获取
|
|
158
|
+
*/
|
|
159
|
+
Offset?: number;
|
|
156
160
|
}
|
|
157
161
|
/**
|
|
158
162
|
* 获取网关节点信息
|
|
@@ -2204,6 +2204,7 @@ export interface DescribeMediaProcessUsageDataRequest {
|
|
|
2204
2204
|
<li> ContentRecognition: 内容识别</li>
|
|
2205
2205
|
<li> RemoveWatermark: 去除水印</li>
|
|
2206
2206
|
<li> ExtractTraceWatermark: 提取水印</li>
|
|
2207
|
+
<li> AddTraceWatermark: 添加水印</li>
|
|
2207
2208
|
<li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
|
|
2208
2209
|
*/
|
|
2209
2210
|
Type?: string;
|
|
@@ -3493,6 +3494,7 @@ export interface TaskStatData {
|
|
|
3493
3494
|
<li> ContentRecognition: 内容识别</li>
|
|
3494
3495
|
<li> RemoveWatermark: 去水印</li>
|
|
3495
3496
|
<li> ExtractTraceWatermark: 提取水印</li>
|
|
3497
|
+
<li> AddTraceWatermark: 添加水印</li>
|
|
3496
3498
|
<li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
|
|
3497
3499
|
*/
|
|
3498
3500
|
TaskType: string;
|
|
@@ -918,9 +918,9 @@ it("cpdp.v20190820.QueryShopOpenId", async function () {
|
|
|
918
918
|
}
|
|
919
919
|
})
|
|
920
920
|
|
|
921
|
-
it("cpdp.v20190820.
|
|
921
|
+
it("cpdp.v20190820.QueryFinancialDataUrl", async function () {
|
|
922
922
|
try {
|
|
923
|
-
const data = await client.
|
|
923
|
+
const data = await client.QueryFinancialDataUrl({})
|
|
924
924
|
expect(data).to.be.ok
|
|
925
925
|
} catch(error) {
|
|
926
926
|
expect(error.requestId).to.be.ok
|
|
@@ -1358,9 +1358,9 @@ it("cpdp.v20190820.ApplyPayerInfo", async function () {
|
|
|
1358
1358
|
}
|
|
1359
1359
|
})
|
|
1360
1360
|
|
|
1361
|
-
it("cpdp.v20190820.
|
|
1361
|
+
it("cpdp.v20190820.QueryOpenBankPaymentOrder", async function () {
|
|
1362
1362
|
try {
|
|
1363
|
-
const data = await client.
|
|
1363
|
+
const data = await client.QueryOpenBankPaymentOrder({})
|
|
1364
1364
|
expect(data).to.be.ok
|
|
1365
1365
|
} catch(error) {
|
|
1366
1366
|
expect(error.requestId).to.be.ok
|
|
@@ -1698,6 +1698,16 @@ it("cpdp.v20190820.CreateCustAcctId", async function () {
|
|
|
1698
1698
|
}
|
|
1699
1699
|
})
|
|
1700
1700
|
|
|
1701
|
+
it("cpdp.v20190820.UploadFile", async function () {
|
|
1702
|
+
try {
|
|
1703
|
+
const data = await client.UploadFile({})
|
|
1704
|
+
expect(data).to.be.ok
|
|
1705
|
+
} catch(error) {
|
|
1706
|
+
expect(error.requestId).to.be.ok
|
|
1707
|
+
expect(error.code).to.be.ok
|
|
1708
|
+
}
|
|
1709
|
+
})
|
|
1710
|
+
|
|
1701
1711
|
it("cpdp.v20190820.CloseOrder", async function () {
|
|
1702
1712
|
try {
|
|
1703
1713
|
const data = await client.CloseOrder({})
|
|
@@ -1568,16 +1568,6 @@ it("cwp.v20180228.DescribeAssetEnvList", async function () {
|
|
|
1568
1568
|
}
|
|
1569
1569
|
})
|
|
1570
1570
|
|
|
1571
|
-
it("cwp.v20180228.DescribeESHits", async function () {
|
|
1572
|
-
try {
|
|
1573
|
-
const data = await client.DescribeESHits({})
|
|
1574
|
-
expect(data).to.be.ok
|
|
1575
|
-
} catch(error) {
|
|
1576
|
-
expect(error.requestId).to.be.ok
|
|
1577
|
-
expect(error.code).to.be.ok
|
|
1578
|
-
}
|
|
1579
|
-
})
|
|
1580
|
-
|
|
1581
1571
|
it("cwp.v20180228.CreateEmergencyVulScan", async function () {
|
|
1582
1572
|
try {
|
|
1583
1573
|
const data = await client.CreateEmergencyVulScan({})
|