tencentcloud-sdk-nodejs 4.0.524 → 4.0.526
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 +162 -0
- package/SERVICE_CHANGELOG.md +141 -130
- package/package.json +1 -1
- package/products.md +10 -10
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bma/v20210624/bma_models.ts +20 -5
- package/src/services/cdn/v20180606/cdn_client.ts +22 -8
- package/src/services/cdn/v20180606/cdn_models.ts +145 -33
- package/src/services/clb/v20180317/clb_client.ts +7 -2
- package/src/services/clb/v20180317/clb_models.ts +22 -16
- package/src/services/cls/v20201016/cls_client.ts +1 -1
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +2 -2
- package/src/services/rum/v20210622/rum_client.ts +1 -1
- package/src/services/teo/v20220901/teo_client.ts +16 -1
- package/src/services/teo/v20220901/teo_models.ts +197 -21
- package/src/services/tsf/v20180326/tsf_client.ts +210 -50
- package/src/services/tsf/v20180326/tsf_models.ts +1118 -299
- 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 +17 -5
- package/tencentcloud/services/cdn/v20180606/cdn_client.d.ts +7 -3
- package/tencentcloud/services/cdn/v20180606/cdn_client.js +9 -3
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +123 -28
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +6 -1
- package/tencentcloud/services/clb/v20180317/clb_client.js +6 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +20 -15
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +2 -2
- package/tencentcloud/services/rum/v20210622/rum_client.d.ts +1 -1
- package/tencentcloud/services/rum/v20210622/rum_client.js +1 -1
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +5 -1
- package/tencentcloud/services/teo/v20220901/teo_client.js +6 -0
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +170 -17
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +67 -15
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +99 -21
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +877 -180
- package/test/cdn.v20180606.test.js +12 -2
- package/test/teo.v20220901.test.js +10 -0
- package/test/tsf.v20180326.test.js +144 -14
|
@@ -99,6 +99,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
99
99
|
async DeleteLaneRule(req, cb) {
|
|
100
100
|
return this.request("DeleteLaneRule", req, cb);
|
|
101
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* 删除集群
|
|
104
|
+
*/
|
|
105
|
+
async DeleteCluster(req, cb) {
|
|
106
|
+
return this.request("DeleteCluster", req, cb);
|
|
107
|
+
}
|
|
102
108
|
/**
|
|
103
109
|
* 重新执行工作流批次
|
|
104
110
|
*/
|
|
@@ -130,10 +136,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
130
136
|
return this.request("DescribeConfigs", req, cb);
|
|
131
137
|
}
|
|
132
138
|
/**
|
|
133
|
-
*
|
|
139
|
+
* 创建参数模板
|
|
134
140
|
*/
|
|
135
|
-
async
|
|
136
|
-
return this.request("
|
|
141
|
+
async CreateConfigTemplate(req, cb) {
|
|
142
|
+
return this.request("CreateConfigTemplate", req, cb);
|
|
137
143
|
}
|
|
138
144
|
/**
|
|
139
145
|
* 查询服务API列表
|
|
@@ -171,6 +177,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
171
177
|
async DescribeTaskDetail(req, cb) {
|
|
172
178
|
return this.request("DescribeTaskDetail", req, cb);
|
|
173
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
* 修改集群信息
|
|
182
|
+
*/
|
|
183
|
+
async ModifyCluster(req, cb) {
|
|
184
|
+
return this.request("ModifyCluster", req, cb);
|
|
185
|
+
}
|
|
174
186
|
/**
|
|
175
187
|
* 容器部署组详情(已废弃,请使用 DescribeContainerGroupDeployInfo)
|
|
176
188
|
*/
|
|
@@ -219,6 +231,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
219
231
|
async DescribeApiDetail(req, cb) {
|
|
220
232
|
return this.request("DescribeApiDetail", req, cb);
|
|
221
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* 撤回已发布的文件配置
|
|
236
|
+
*/
|
|
237
|
+
async RevokeFileConfig(req, cb) {
|
|
238
|
+
return this.request("RevokeFileConfig", req, cb);
|
|
239
|
+
}
|
|
222
240
|
/**
|
|
223
241
|
* 创建容器部署组
|
|
224
242
|
*/
|
|
@@ -335,10 +353,10 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
335
353
|
return this.request("DescribeGroupUseDetail", req, cb);
|
|
336
354
|
}
|
|
337
355
|
/**
|
|
338
|
-
*
|
|
356
|
+
* 镜像仓库列表
|
|
339
357
|
*/
|
|
340
|
-
async
|
|
341
|
-
return this.request("
|
|
358
|
+
async DescribeImageRepository(req, cb) {
|
|
359
|
+
return this.request("DescribeImageRepository", req, cb);
|
|
342
360
|
}
|
|
343
361
|
/**
|
|
344
362
|
* 重关联业务日志配置
|
|
@@ -478,6 +496,12 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
478
496
|
async DescribeApiGroups(req, cb) {
|
|
479
497
|
return this.request("DescribeApiGroups", req, cb);
|
|
480
498
|
}
|
|
499
|
+
/**
|
|
500
|
+
* 获取集群列表
|
|
501
|
+
*/
|
|
502
|
+
async DescribeClusters(req, cb) {
|
|
503
|
+
return this.request("DescribeClusters", req, cb);
|
|
504
|
+
}
|
|
481
505
|
/**
|
|
482
506
|
* 查询日志配置项列表
|
|
483
507
|
*/
|
|
@@ -509,10 +533,10 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
509
533
|
return this.request("DescribeGroups", req, cb);
|
|
510
534
|
}
|
|
511
535
|
/**
|
|
512
|
-
*
|
|
536
|
+
* 查询文件配置项发布信息
|
|
513
537
|
*/
|
|
514
|
-
async
|
|
515
|
-
return this.request("
|
|
538
|
+
async DescribeFileConfigReleases(req, cb) {
|
|
539
|
+
return this.request("DescribeFileConfigReleases", req, cb);
|
|
516
540
|
}
|
|
517
541
|
/**
|
|
518
542
|
* 查询仓库列表
|
|
@@ -581,10 +605,10 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
581
605
|
return this.request("DescribeStatistics", req, cb);
|
|
582
606
|
}
|
|
583
607
|
/**
|
|
584
|
-
*
|
|
608
|
+
* 删除模板
|
|
585
609
|
*/
|
|
586
|
-
async
|
|
587
|
-
return this.request("
|
|
610
|
+
async DeleteConfigTemplate(req, cb) {
|
|
611
|
+
return this.request("DeleteConfigTemplate", req, cb);
|
|
588
612
|
}
|
|
589
613
|
/**
|
|
590
614
|
* 发布文件配置
|
|
@@ -617,6 +641,12 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
617
641
|
async AddInstances(req, cb) {
|
|
618
642
|
return this.request("AddInstances", req, cb);
|
|
619
643
|
}
|
|
644
|
+
/**
|
|
645
|
+
* 修改命名空间
|
|
646
|
+
*/
|
|
647
|
+
async ModifyNamespace(req, cb) {
|
|
648
|
+
return this.request("ModifyNamespace", req, cb);
|
|
649
|
+
}
|
|
620
650
|
/**
|
|
621
651
|
* 查询配置汇总列表
|
|
622
652
|
*/
|
|
@@ -660,10 +690,10 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
660
690
|
return this.request("DescribePrograms", req, cb);
|
|
661
691
|
}
|
|
662
692
|
/**
|
|
663
|
-
*
|
|
693
|
+
* 查询公共配置(单条)
|
|
664
694
|
*/
|
|
665
|
-
async
|
|
666
|
-
return this.request("
|
|
695
|
+
async DescribePublicConfig(req, cb) {
|
|
696
|
+
return this.request("DescribePublicConfig", req, cb);
|
|
667
697
|
}
|
|
668
698
|
/**
|
|
669
699
|
* 查询API分组
|
|
@@ -672,10 +702,10 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
672
702
|
return this.request("DescribeApiGroup", req, cb);
|
|
673
703
|
}
|
|
674
704
|
/**
|
|
675
|
-
*
|
|
705
|
+
* 修改应用
|
|
676
706
|
*/
|
|
677
|
-
async
|
|
678
|
-
return this.request("
|
|
707
|
+
async ModifyApplication(req, cb) {
|
|
708
|
+
return this.request("ModifyApplication", req, cb);
|
|
679
709
|
}
|
|
680
710
|
/**
|
|
681
711
|
* 删除路径重写
|
|
@@ -727,10 +757,10 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
727
757
|
return this.request("DescribePublicConfigs", req, cb);
|
|
728
758
|
}
|
|
729
759
|
/**
|
|
730
|
-
*
|
|
760
|
+
* 导入配置
|
|
731
761
|
*/
|
|
732
|
-
async
|
|
733
|
-
return this.request("
|
|
762
|
+
async DescribeConfigTemplate(req, cb) {
|
|
763
|
+
return this.request("DescribeConfigTemplate", req, cb);
|
|
734
764
|
}
|
|
735
765
|
/**
|
|
736
766
|
* 取消关联投递信息和部署组
|
|
@@ -786,6 +816,12 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
786
816
|
async DeleteLane(req, cb) {
|
|
787
817
|
return this.request("DeleteLane", req, cb);
|
|
788
818
|
}
|
|
819
|
+
/**
|
|
820
|
+
* 更新参数模板
|
|
821
|
+
*/
|
|
822
|
+
async UpdateConfigTemplate(req, cb) {
|
|
823
|
+
return this.request("UpdateConfigTemplate", req, cb);
|
|
824
|
+
}
|
|
789
825
|
/**
|
|
790
826
|
* 查询配置发布信息
|
|
791
827
|
*/
|
|
@@ -834,6 +870,18 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
834
870
|
async ModifyLane(req, cb) {
|
|
835
871
|
return this.request("ModifyLane", req, cb);
|
|
836
872
|
}
|
|
873
|
+
/**
|
|
874
|
+
* 启用任务
|
|
875
|
+
*/
|
|
876
|
+
async EnableTask(req, cb) {
|
|
877
|
+
return this.request("EnableTask", req, cb);
|
|
878
|
+
}
|
|
879
|
+
/**
|
|
880
|
+
* 新增微服务返回id
|
|
881
|
+
*/
|
|
882
|
+
async CreateMicroserviceWithDetailResp(req, cb) {
|
|
883
|
+
return this.request("CreateMicroserviceWithDetailResp", req, cb);
|
|
884
|
+
}
|
|
837
885
|
/**
|
|
838
886
|
* 修改微服务详情
|
|
839
887
|
*/
|
|
@@ -882,6 +930,12 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
882
930
|
async RedoTaskBatch(req, cb) {
|
|
883
931
|
return this.request("RedoTaskBatch", req, cb);
|
|
884
932
|
}
|
|
933
|
+
/**
|
|
934
|
+
* 发布Api分组
|
|
935
|
+
*/
|
|
936
|
+
async ReleaseApiGroup(req, cb) {
|
|
937
|
+
return this.request("ReleaseApiGroup", req, cb);
|
|
938
|
+
}
|
|
885
939
|
/**
|
|
886
940
|
* 关联日志配置项到应用
|
|
887
941
|
*/
|
|
@@ -900,6 +954,18 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
900
954
|
async DescribeConfigReleaseLogs(req, cb) {
|
|
901
955
|
return this.request("DescribeConfigReleaseLogs", req, cb);
|
|
902
956
|
}
|
|
957
|
+
/**
|
|
958
|
+
* 查询简单应用列表
|
|
959
|
+
*/
|
|
960
|
+
async DescribeSimpleApplications(req, cb) {
|
|
961
|
+
return this.request("DescribeSimpleApplications", req, cb);
|
|
962
|
+
}
|
|
963
|
+
/**
|
|
964
|
+
* 查询路径重写
|
|
965
|
+
*/
|
|
966
|
+
async DescribePathRewrite(req, cb) {
|
|
967
|
+
return this.request("DescribePathRewrite", req, cb);
|
|
968
|
+
}
|
|
903
969
|
/**
|
|
904
970
|
* 执行一次工作流
|
|
905
971
|
*/
|
|
@@ -936,6 +1002,12 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
936
1002
|
async DeleteRepository(req, cb) {
|
|
937
1003
|
return this.request("DeleteRepository", req, cb);
|
|
938
1004
|
}
|
|
1005
|
+
/**
|
|
1006
|
+
* 停用任务
|
|
1007
|
+
*/
|
|
1008
|
+
async DisableTask(req, cb) {
|
|
1009
|
+
return this.request("DisableTask", req, cb);
|
|
1010
|
+
}
|
|
939
1011
|
/**
|
|
940
1012
|
* 启动容器部署组
|
|
941
1013
|
*/
|
|
@@ -1050,6 +1122,12 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
1050
1122
|
async ChangeApiUsableStatus(req, cb) {
|
|
1051
1123
|
return this.request("ChangeApiUsableStatus", req, cb);
|
|
1052
1124
|
}
|
|
1125
|
+
/**
|
|
1126
|
+
* 更新部署组信息
|
|
1127
|
+
*/
|
|
1128
|
+
async ModifyGroup(req, cb) {
|
|
1129
|
+
return this.request("ModifyGroup", req, cb);
|
|
1130
|
+
}
|
|
1053
1131
|
/**
|
|
1054
1132
|
* 获取单个投递项配置信息
|
|
1055
1133
|
*/
|