tencentcloud-sdk-nodejs 4.0.246 → 4.0.247

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 (68) hide show
  1. package/CHANGELOG.md +282 -10
  2. package/package.json +1 -1
  3. package/products.md +10 -8
  4. package/src/common/sdk_version.ts +1 -1
  5. package/src/services/apm/index.ts +5 -0
  6. package/src/services/apm/v20210622/apm_client.ts +40 -0
  7. package/src/services/apm/v20210622/apm_models.ts +98 -0
  8. package/src/services/apm/v20210622/index.ts +6 -0
  9. package/src/services/ckafka/v20190819/ckafka_models.ts +6 -0
  10. package/src/services/clb/v20180317/clb_client.ts +13 -1
  11. package/src/services/clb/v20180317/clb_models.ts +67 -18
  12. package/src/services/cwp/v20180228/cwp_models.ts +9 -8
  13. package/src/services/index.ts +2 -0
  14. package/src/services/mrs/v20200910/mrs_client.ts +2 -0
  15. package/src/services/mrs/v20200910/mrs_models.ts +81 -5
  16. package/src/services/postgres/v20170312/postgres_models.ts +6 -6
  17. package/src/services/privatedns/v20201028/privatedns_client.ts +40 -3
  18. package/src/services/privatedns/v20201028/privatedns_models.ts +141 -31
  19. package/src/services/thpc/index.ts +5 -0
  20. package/src/services/thpc/v20211109/index.ts +6 -0
  21. package/src/services/thpc/v20211109/thpc_client.ts +64 -0
  22. package/src/services/thpc/v20211109/thpc_models.ts +332 -0
  23. package/src/services/tke/v20180525/tke_client.ts +25 -0
  24. package/src/services/tke/v20180525/tke_models.ts +112 -0
  25. package/src/services/tsf/v20180326/tsf_client.ts +13 -0
  26. package/src/services/tsf/v20180326/tsf_models.ts +85 -0
  27. package/tencentcloud/common/sdk_version.d.ts +1 -1
  28. package/tencentcloud/common/sdk_version.js +1 -1
  29. package/tencentcloud/services/apm/index.d.ts +6 -0
  30. package/tencentcloud/services/apm/index.js +7 -0
  31. package/tencentcloud/services/apm/v20210622/apm_client.d.ts +14 -0
  32. package/tencentcloud/services/apm/v20210622/apm_client.js +37 -0
  33. package/tencentcloud/services/apm/v20210622/apm_models.d.ts +70 -0
  34. package/tencentcloud/services/apm/v20210622/apm_models.js +18 -0
  35. package/tencentcloud/services/apm/v20210622/index.d.ts +6 -0
  36. package/tencentcloud/services/apm/v20210622/index.js +9 -0
  37. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +5 -0
  38. package/tencentcloud/services/clb/v20180317/clb_client.d.ts +5 -1
  39. package/tencentcloud/services/clb/v20180317/clb_client.js +6 -0
  40. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +56 -15
  41. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +9 -8
  42. package/tencentcloud/services/index.d.ts +2 -0
  43. package/tencentcloud/services/index.js +4 -0
  44. package/tencentcloud/services/mrs/v20200910/mrs_models.d.ts +70 -5
  45. package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +6 -6
  46. package/tencentcloud/services/privatedns/v20201028/privatedns_client.d.ts +13 -1
  47. package/tencentcloud/services/privatedns/v20201028/privatedns_client.js +18 -0
  48. package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +123 -28
  49. package/tencentcloud/services/thpc/index.d.ts +6 -0
  50. package/tencentcloud/services/thpc/index.js +7 -0
  51. package/tencentcloud/services/thpc/v20211109/index.d.ts +6 -0
  52. package/tencentcloud/services/thpc/v20211109/index.js +9 -0
  53. package/tencentcloud/services/thpc/v20211109/thpc_client.d.ts +18 -0
  54. package/tencentcloud/services/thpc/v20211109/thpc_client.js +43 -0
  55. package/tencentcloud/services/thpc/v20211109/thpc_models.d.ts +272 -0
  56. package/tencentcloud/services/thpc/v20211109/thpc_models.js +18 -0
  57. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -1
  58. package/tencentcloud/services/tke/v20180525/tke_client.js +12 -0
  59. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +95 -0
  60. package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +5 -1
  61. package/tencentcloud/services/tsf/v20180326/tsf_client.js +6 -0
  62. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +73 -0
  63. package/test/apm.v20210622.test.js +31 -0
  64. package/test/clb.v20180317.test.js +10 -0
  65. package/test/privatedns.v20201028.test.js +30 -0
  66. package/test/thpc.v20211109.test.js +41 -0
  67. package/test/tke.v20180525.test.js +20 -0
  68. package/test/tsf.v20180326.test.js +10 -0
package/CHANGELOG.md CHANGED
@@ -1,10 +1,49 @@
1
1
  # 本版本更新包含以下内容:
2
2
 
3
+ ## 应用性能观测(apm) 版本:2021-06-22
4
+
5
+ ### 第 1 次发布
6
+
7
+ 发布时间:2021-11-29 14:39:11
8
+
9
+ 本次发布包含了以下内容:
10
+
11
+ 改善已有的文档。
12
+
13
+ 新增接口:
14
+
15
+ * [DescribeApmAgent](https://cloud.tencent.com/document/api/1463/64926)
16
+
17
+ 新增数据结构:
18
+
19
+ * [ApmAgentInfo](https://cloud.tencent.com/document/api/1463/64927#ApmAgentInfo)
20
+
21
+
22
+
23
+ ## 消息队列 Ckafka(ckafka) 版本:2019-08-19
24
+
25
+ ### 第 25 次发布
26
+
27
+ 发布时间:2021-11-30 08:04:22
28
+
29
+ 本次发布包含了以下内容:
30
+
31
+ 改善已有的文档。
32
+
33
+ 修改接口:
34
+
35
+ * [CreateInstancePre](https://cloud.tencent.com/document/api/597/45847)
36
+
37
+ * 新增出参:DeleteRouteTimestamp
38
+
39
+
40
+
41
+
3
42
  ## 负载均衡(clb) 版本:2018-03-17
4
43
 
5
- ### 第 58 次发布
44
+ ### 第 59 次发布
6
45
 
7
- 发布时间:2021-11-29 08:05:45
46
+ 发布时间:2021-11-30 08:04:28
8
47
 
9
48
  本次发布包含了以下内容:
10
49
 
@@ -12,15 +51,68 @@
12
51
 
13
52
  新增接口:
14
53
 
15
- * [CloneLoadBalancer](https://cloud.tencent.com/document/api/214/64874)
54
+ * [DescribeLoadBalancerOverview](https://cloud.tencent.com/document/api/214/64973)
55
+
56
+ 修改数据结构:
57
+
58
+ * [LoadBalancer](https://cloud.tencent.com/document/api/214/30694#LoadBalancer)
59
+
60
+ * 新增成员:ClusterIds, AttributeFlags
61
+
62
+
63
+
64
+
65
+ ## 医疗报告结构化(mrs) 版本:2020-09-10
66
+
67
+ ### 第 8 次发布
68
+
69
+ 发布时间:2021-11-30 08:10:05
70
+
71
+ 本次发布包含了以下内容:
72
+
73
+ 改善已有的文档。
74
+
75
+ 新增数据结构:
76
+
77
+ * [Vaccination](https://cloud.tencent.com/document/api/1314/56230#Vaccination)
78
+ * [VaccineCertificate](https://cloud.tencent.com/document/api/1314/56230#VaccineCertificate)
79
+
80
+ 修改数据结构:
81
+
82
+ * [Template](https://cloud.tencent.com/document/api/1314/56230#Template)
83
+
84
+ * 新增成员:VaccineCertificate
85
+
86
+
87
+
88
+
89
+ ## 私有域解析 Private DNS(privatedns) 版本:2020-10-28
90
+
91
+ ### 第 4 次发布
92
+
93
+ 发布时间:2021-11-30 08:10:39
94
+
95
+ 本次发布包含了以下内容:
96
+
97
+ 改善已有的文档。
98
+
99
+ 新增接口:
100
+
101
+ * [CreatePrivateDNSAccount](https://cloud.tencent.com/document/api/1338/64976)
102
+ * [DeletePrivateDNSAccount](https://cloud.tencent.com/document/api/1338/64975)
103
+ * [DescribeAccountVpcList](https://cloud.tencent.com/document/api/1338/64974)
104
+
105
+ 新增数据结构:
106
+
107
+ * [AccountVpcInfoOut](https://cloud.tencent.com/document/api/1338/55947#AccountVpcInfoOut)
16
108
 
17
109
 
18
110
 
19
111
  ## 容器服务(tke) 版本:2018-05-25
20
112
 
21
- ### 第 79 次发布
113
+ ### 第 80 次发布
22
114
 
23
- 发布时间:2021-11-29 08:13:39
115
+ 发布时间:2021-11-30 08:12:44
24
116
 
25
117
  本次发布包含了以下内容:
26
118
 
@@ -28,8 +120,32 @@
28
120
 
29
121
  新增接口:
30
122
 
31
- * [DisableClusterDeletionProtection](https://cloud.tencent.com/document/api/457/64876)
32
- * [EnableClusterDeletionProtection](https://cloud.tencent.com/document/api/457/64875)
123
+ * [ForwardApplicationRequestV3](https://cloud.tencent.com/document/api/457/64978)
124
+ * [GetTkeAppChartList](https://cloud.tencent.com/document/api/457/64977)
125
+
126
+ 新增数据结构:
127
+
128
+ * [AppChart](https://cloud.tencent.com/document/api/457/31866#AppChart)
129
+
130
+
131
+
132
+ ## 腾讯微服务平台 TSF(tsf) 版本:2018-03-26
133
+
134
+ ### 第 61 次发布
135
+
136
+ 发布时间:2021-11-30 08:13:08
137
+
138
+ 本次发布包含了以下内容:
139
+
140
+ 改善已有的文档。
141
+
142
+ 新增接口:
143
+
144
+ * [DescribeGroupAttribute](https://cloud.tencent.com/document/api/649/64979)
145
+
146
+ 新增数据结构:
147
+
148
+ * [VmGroupOther](https://cloud.tencent.com/document/api/649/36099#VmGroupOther)
33
149
 
34
150
 
35
151
 
@@ -2003,6 +2119,27 @@
2003
2119
 
2004
2120
 
2005
2121
 
2122
+ ## 应用性能观测(apm) 版本:2021-06-22
2123
+
2124
+ ### 第 1 次发布
2125
+
2126
+ 发布时间:2021-11-29 14:39:11
2127
+
2128
+ 本次发布包含了以下内容:
2129
+
2130
+ 改善已有的文档。
2131
+
2132
+ 新增接口:
2133
+
2134
+ * [[DescribeApmAgent](https://cloud.tencent.com/document/api/1463/64926)](https://cloud.tencent.com/document/api/#/#)
2135
+
2136
+ 新增数据结构:
2137
+
2138
+ * [[ApmAgentInfo](https://cloud.tencent.com/document/api/1463/64927#ApmAgentInfo)](https://cloud.tencent.com/document/api/1463/64927#[ApmAgentInfo](https://cloud.tencent.com/document/api/1463/64927#ApmAgentInfo))
2139
+
2140
+
2141
+
2142
+
2006
2143
  ## 弹性伸缩(as) 版本:2018-04-19
2007
2144
 
2008
2145
  ### 第 42 次发布
@@ -12700,6 +12837,21 @@
12700
12837
 
12701
12838
  ## 消息队列 Ckafka(ckafka) 版本:2019-08-19
12702
12839
 
12840
+ ### 第 25 次发布
12841
+
12842
+ 发布时间:2021-11-30 08:04:22
12843
+
12844
+ 本次发布包含了以下内容:
12845
+
12846
+ 改善已有的文档。
12847
+
12848
+ 修改接口:
12849
+
12850
+ * [CreateInstancePre](https://cloud.tencent.com/document/api/597/45847)
12851
+
12852
+ * 新增出参:DeleteRouteTimestamp
12853
+
12854
+
12703
12855
  ### 第 24 次发布
12704
12856
 
12705
12857
  发布时间:2021-11-02 08:04:08
@@ -13259,6 +13411,25 @@
13259
13411
 
13260
13412
  ## 负载均衡(clb) 版本:2018-03-17
13261
13413
 
13414
+ ### 第 59 次发布
13415
+
13416
+ 发布时间:2021-11-30 08:04:28
13417
+
13418
+ 本次发布包含了以下内容:
13419
+
13420
+ 改善已有的文档。
13421
+
13422
+ 新增接口:
13423
+
13424
+ * [[DescribeLoadBalancerOverview](https://cloud.tencent.com/document/api/214/64973)](https://cloud.tencent.com/document/api/#/#)
13425
+
13426
+ 修改数据结构:
13427
+
13428
+ * [LoadBalancer](https://cloud.tencent.com/document/api/214/30694#LoadBalancer)
13429
+
13430
+ * 新增成员:ClusterIds, AttributeFlags
13431
+
13432
+
13262
13433
  ### 第 58 次发布
13263
13434
 
13264
13435
  发布时间:2021-11-29 08:05:45
@@ -13269,7 +13440,7 @@
13269
13440
 
13270
13441
  新增接口:
13271
13442
 
13272
- * [[CloneLoadBalancer](https://cloud.tencent.com/document/api/214/64874)](https://cloud.tencent.com/document/api/#/#)
13443
+ * [CloneLoadBalancer](https://cloud.tencent.com/document/api/214/64874)
13273
13444
 
13274
13445
  ### 第 57 次发布
13275
13446
 
@@ -39933,6 +40104,26 @@
39933
40104
 
39934
40105
  ## 医疗报告结构化(mrs) 版本:2020-09-10
39935
40106
 
40107
+ ### 第 8 次发布
40108
+
40109
+ 发布时间:2021-11-30 08:10:05
40110
+
40111
+ 本次发布包含了以下内容:
40112
+
40113
+ 改善已有的文档。
40114
+
40115
+ 新增数据结构:
40116
+
40117
+ * [[Vaccination](https://cloud.tencent.com/document/api/1314/56230#Vaccination)](https://cloud.tencent.com/document/api/1314/56230#[Vaccination](https://cloud.tencent.com/document/api/1314/56230#Vaccination))
40118
+ * [[VaccineCertificate](https://cloud.tencent.com/document/api/1314/56230#VaccineCertificate)](https://cloud.tencent.com/document/api/1314/56230#[VaccineCertificate](https://cloud.tencent.com/document/api/1314/56230#VaccineCertificate))
40119
+
40120
+ 修改数据结构:
40121
+
40122
+ * [Template](https://cloud.tencent.com/document/api/1314/56230#Template)
40123
+
40124
+ * 新增成员:VaccineCertificate
40125
+
40126
+
39936
40127
  ### 第 7 次发布
39937
40128
 
39938
40129
  发布时间:2021-11-16 08:13:00
@@ -43103,6 +43294,24 @@
43103
43294
 
43104
43295
  ## 私有域解析 Private DNS(privatedns) 版本:2020-10-28
43105
43296
 
43297
+ ### 第 4 次发布
43298
+
43299
+ 发布时间:2021-11-30 08:10:39
43300
+
43301
+ 本次发布包含了以下内容:
43302
+
43303
+ 改善已有的文档。
43304
+
43305
+ 新增接口:
43306
+
43307
+ * [[CreatePrivateDNSAccount](https://cloud.tencent.com/document/api/1338/64976)](https://cloud.tencent.com/document/api/#/#)
43308
+ * [[DeletePrivateDNSAccount](https://cloud.tencent.com/document/api/1338/64975)](https://cloud.tencent.com/document/api/#/#)
43309
+ * [[DescribeAccountVpcList](https://cloud.tencent.com/document/api/1338/64974)](https://cloud.tencent.com/document/api/#/#)
43310
+
43311
+ 新增数据结构:
43312
+
43313
+ * [[AccountVpcInfoOut](https://cloud.tencent.com/document/api/1338/55947#AccountVpcInfoOut)](https://cloud.tencent.com/document/api/1338/55947#[AccountVpcInfoOut](https://cloud.tencent.com/document/api/1338/55947#AccountVpcInfoOut))
43314
+
43106
43315
  ### 第 3 次发布
43107
43316
 
43108
43317
  发布时间:2021-09-13 08:00:37
@@ -52297,6 +52506,36 @@
52297
52506
 
52298
52507
 
52299
52508
 
52509
+ ## 高性能计算平台(thpc) 版本:2021-11-09
52510
+
52511
+ ### 第 1 次发布
52512
+
52513
+ 发布时间:2021-11-29 12:09:18
52514
+
52515
+ 本次发布包含了以下内容:
52516
+
52517
+ 改善已有的文档。
52518
+
52519
+ 新增接口:
52520
+
52521
+ * [CreateCluster](https://cloud.tencent.com/document/api/1527/64905)
52522
+ * [DeleteCluster](https://cloud.tencent.com/document/api/1527/64904)
52523
+
52524
+ 新增数据结构:
52525
+
52526
+ * [ComputeNode](https://cloud.tencent.com/document/api/1527/64906#ComputeNode)
52527
+ * [DataDisk](https://cloud.tencent.com/document/api/1527/64906#DataDisk)
52528
+ * [InstanceChargePrepaid](https://cloud.tencent.com/document/api/1527/64906#InstanceChargePrepaid)
52529
+ * [InternetAccessible](https://cloud.tencent.com/document/api/1527/64906#InternetAccessible)
52530
+ * [LoginSettings](https://cloud.tencent.com/document/api/1527/64906#LoginSettings)
52531
+ * [ManagerNode](https://cloud.tencent.com/document/api/1527/64906#ManagerNode)
52532
+ * [Placement](https://cloud.tencent.com/document/api/1527/64906#Placement)
52533
+ * [SystemDisk](https://cloud.tencent.com/document/api/1527/64906#SystemDisk)
52534
+ * [VirtualPrivateCloud](https://cloud.tencent.com/document/api/1527/64906#VirtualPrivateCloud)
52535
+
52536
+
52537
+
52538
+
52300
52539
  ## 智能钛机器学习(tia) 版本:2018-02-26
52301
52540
 
52302
52541
  ### 第 3 次发布
@@ -53893,6 +54132,23 @@
53893
54132
 
53894
54133
  ## 容器服务(tke) 版本:2018-05-25
53895
54134
 
54135
+ ### 第 80 次发布
54136
+
54137
+ 发布时间:2021-11-30 08:12:44
54138
+
54139
+ 本次发布包含了以下内容:
54140
+
54141
+ 改善已有的文档。
54142
+
54143
+ 新增接口:
54144
+
54145
+ * [[ForwardApplicationRequestV3](https://cloud.tencent.com/document/api/457/64978)](https://cloud.tencent.com/document/api/#/#)
54146
+ * [[GetTkeAppChartList](https://cloud.tencent.com/document/api/457/64977)](https://cloud.tencent.com/document/api/#/#)
54147
+
54148
+ 新增数据结构:
54149
+
54150
+ * [[AppChart](https://cloud.tencent.com/document/api/457/31866#AppChart)](https://cloud.tencent.com/document/api/457/31866#[AppChart](https://cloud.tencent.com/document/api/457/31866#AppChart))
54151
+
53896
54152
  ### 第 79 次发布
53897
54153
 
53898
54154
  发布时间:2021-11-29 08:13:39
@@ -53903,8 +54159,8 @@
53903
54159
 
53904
54160
  新增接口:
53905
54161
 
53906
- * [[DisableClusterDeletionProtection](https://cloud.tencent.com/document/api/457/64876)](https://cloud.tencent.com/document/api/#/#)
53907
- * [[EnableClusterDeletionProtection](https://cloud.tencent.com/document/api/457/64875)](https://cloud.tencent.com/document/api/#/#)
54162
+ * [DisableClusterDeletionProtection](https://cloud.tencent.com/document/api/457/64876)
54163
+ * [EnableClusterDeletionProtection](https://cloud.tencent.com/document/api/457/64875)
53908
54164
 
53909
54165
  ### 第 78 次发布
53910
54166
 
@@ -56433,6 +56689,22 @@
56433
56689
 
56434
56690
  ## 腾讯微服务平台 TSF(tsf) 版本:2018-03-26
56435
56691
 
56692
+ ### 第 61 次发布
56693
+
56694
+ 发布时间:2021-11-30 08:13:08
56695
+
56696
+ 本次发布包含了以下内容:
56697
+
56698
+ 改善已有的文档。
56699
+
56700
+ 新增接口:
56701
+
56702
+ * [[DescribeGroupAttribute](https://cloud.tencent.com/document/api/649/64979)](https://cloud.tencent.com/document/api/#/#)
56703
+
56704
+ 新增数据结构:
56705
+
56706
+ * [[VmGroupOther](https://cloud.tencent.com/document/api/649/36099#VmGroupOther)](https://cloud.tencent.com/document/api/649/36099#[VmGroupOther](https://cloud.tencent.com/document/api/649/36099#VmGroupOther))
56707
+
56436
56708
  ### 第 60 次发布
56437
56709
 
56438
56710
  发布时间:2021-11-12 08:10:33
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.246",
3
+ "version": "4.0.247",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -12,6 +12,7 @@
12
12
  | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2021-11-10 08:02:03 |
13
13
  | api | [云 API](https://cloud.tencent.com/document/product/546) | 2021-04-25 10:09:57 |
14
14
  | apigateway | [API网关](https://cloud.tencent.com/document/product/628) | 2021-11-24 08:04:10 |
15
+ | apm | [应用性能观测](https://cloud.tencent.com/document/product/1463) | 2021-11-29 14:39:11 |
15
16
  | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2021-11-23 08:02:56 |
16
17
  | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2021-11-10 08:02:28 |
17
18
  | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2021-11-29 08:03:58 |
@@ -40,8 +41,8 @@
40
41
  | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2021-11-23 08:04:46 |
41
42
  | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
42
43
  | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
43
- | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2021-11-24 08:06:10 |
44
- | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2021-11-29 08:05:45 |
44
+ | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2021-11-30 08:04:22 |
45
+ | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2021-11-30 08:04:28 |
45
46
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2021-11-16 08:07:51 |
46
47
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2021-11-10 08:04:28 |
47
48
  | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2021-11-10 08:04:30 |
@@ -51,7 +52,7 @@
51
52
  | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2021-11-17 08:08:58 |
52
53
  | cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 |
53
54
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2021-11-26 08:07:10 |
54
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2021-11-22 08:04:43 |
55
+ | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2021-11-30 08:05:34 |
55
56
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
56
57
  | cynosdb | [云原生数据库 TDSQL-C](https://cloud.tencent.com/document/product/1003) | 2021-11-17 08:10:15 |
57
58
  | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2021-11-10 08:05:47 |
@@ -107,7 +108,7 @@
107
108
  | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2021-11-10 08:08:57 |
108
109
  | monitor | [云监控](https://cloud.tencent.com/document/product/248) | 2021-11-18 08:10:15 |
109
110
  | mps | [视频处理](https://cloud.tencent.com/document/product/862) | 2021-11-24 08:11:23 |
110
- | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2021-11-16 08:13:00 |
111
+ | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2021-11-30 08:10:05 |
111
112
  | ms | [移动应用安全](https://cloud.tencent.com/document/product) | 2020-06-05 08:13:52 |
112
113
  | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2021-11-10 08:09:22 |
113
114
  | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
@@ -118,8 +119,8 @@
118
119
  | organization | [企业组织](https://cloud.tencent.com/document/product/850) | 2021-11-10 08:09:46 |
119
120
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2021-11-18 08:11:02 |
120
121
  | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2021-11-10 08:09:50 |
121
- | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2021-11-26 08:12:08 |
122
- | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2021-11-10 08:09:59 |
122
+ | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2021-11-30 08:10:31 |
123
+ | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2021-11-30 08:10:39 |
123
124
  | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2021-11-10 08:10:02 |
124
125
  | redis | [云数据库 Redis](https://cloud.tencent.com/document/product/239) | 2021-11-04 08:12:00 |
125
126
  | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2021-11-10 08:10:03 |
@@ -153,6 +154,7 @@
153
154
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2021-11-10 08:11:24 |
154
155
  | tdmq | [分布式消息队列](https://cloud.tencent.com/document/product/1179) | 2021-11-24 08:13:42 |
155
156
  | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2021-11-10 08:11:34 |
157
+ | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2021-11-29 19:51:19 |
156
158
  | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
157
159
  | tic | [腾讯云IaC平台](https://cloud.tencent.com/document/product/1213) | 2021-11-10 08:11:35 |
158
160
  | ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
@@ -161,13 +163,13 @@
161
163
  | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2021-11-10 08:11:42 |
162
164
  | tione | [智能钛机器学习平台](https://cloud.tencent.com/document/product/851) | 2021-11-10 08:11:45 |
163
165
  | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2021-11-19 08:15:40 |
164
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2021-11-29 08:13:39 |
166
+ | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2021-11-30 08:12:44 |
165
167
  | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
166
168
  | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2021-11-10 08:12:05 |
167
169
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2021-11-10 08:12:05 |
168
170
  | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2021-11-11 11:09:51 |
169
171
  | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2021-11-22 08:11:57 |
170
- | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2021-11-12 08:10:33 |
172
+ | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2021-11-30 08:13:08 |
171
173
  | tsw | [腾讯微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2021-11-10 08:12:32 |
172
174
  | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2021-11-10 08:12:33 |
173
175
  | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2021-11-10 08:12:34 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.246"
1
+ export const sdkVersion = "4.0.247"
@@ -0,0 +1,5 @@
1
+ import { v20210622 } from "./v20210622"
2
+
3
+ export const apm = {
4
+ v20210622: v20210622,
5
+ }
@@ -0,0 +1,40 @@
1
+ /* eslint-disable @typescript-eslint/no-unused-vars */
2
+ /*
3
+ * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import { AbstractClient } from "../../../common/abstract_client"
19
+ import { ClientConfig } from "../../../common/interface"
20
+ import { DescribeApmAgentRequest, DescribeApmAgentResponse, ApmAgentInfo } from "./apm_models"
21
+
22
+ /**
23
+ * apm client
24
+ * @class
25
+ */
26
+ export class Client extends AbstractClient {
27
+ constructor(clientConfig: ClientConfig) {
28
+ super("apm.tencentcloudapi.com", "2021-06-22", clientConfig)
29
+ }
30
+
31
+ /**
32
+ * 获取Apm Agent信息
33
+ */
34
+ async DescribeApmAgent(
35
+ req: DescribeApmAgentRequest,
36
+ cb?: (error: string, rep: DescribeApmAgentResponse) => void
37
+ ): Promise<DescribeApmAgentResponse> {
38
+ return this.request("DescribeApmAgent", req, cb)
39
+ }
40
+ }
@@ -0,0 +1,98 @@
1
+ /*
2
+ * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing,
11
+ * software distributed under the License is distributed on an
12
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13
+ * KIND, either express or implied. See the License for the
14
+ * specific language governing permissions and limitations
15
+ * under the License.
16
+ */
17
+
18
+ /**
19
+ * DescribeApmAgent请求参数结构体
20
+ */
21
+ export interface DescribeApmAgentRequest {
22
+ /**
23
+ * 实例ID
24
+ */
25
+ InstanceId: string
26
+
27
+ /**
28
+ * 接入方式
29
+ */
30
+ AgentType?: string
31
+
32
+ /**
33
+ * 环境
34
+ */
35
+ NetworkMode?: string
36
+
37
+ /**
38
+ * 语言
39
+ */
40
+ LanguageEnvironment?: string
41
+ }
42
+
43
+ /**
44
+ * DescribeApmAgent返回参数结构体
45
+ */
46
+ export interface DescribeApmAgentResponse {
47
+ /**
48
+ * Agent信息
49
+ 注意:此字段可能返回 null,表示取不到有效值。
50
+ */
51
+ ApmAgent: ApmAgentInfo
52
+
53
+ /**
54
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
55
+ */
56
+ RequestId?: string
57
+ }
58
+
59
+ /**
60
+ * apm Agent信息
61
+ */
62
+ export interface ApmAgentInfo {
63
+ /**
64
+ * Agent下载地址
65
+ 注意:此字段可能返回 null,表示取不到有效值。
66
+ */
67
+ AgentDownloadURL: string
68
+
69
+ /**
70
+ * Collector上报地址
71
+ 注意:此字段可能返回 null,表示取不到有效值。
72
+ */
73
+ CollectorURL: string
74
+
75
+ /**
76
+ * Token信息
77
+ 注意:此字段可能返回 null,表示取不到有效值。
78
+ */
79
+ Token: string
80
+
81
+ /**
82
+ * 外网上报地址
83
+ 注意:此字段可能返回 null,表示取不到有效值。
84
+ */
85
+ PublicCollectorURL: string
86
+
87
+ /**
88
+ * 自研VPC上报地址
89
+ 注意:此字段可能返回 null,表示取不到有效值。
90
+ */
91
+ InnerCollectorURL: string
92
+
93
+ /**
94
+ * 内网上报地址(Private Link上报地址)
95
+ 注意:此字段可能返回 null,表示取不到有效值。
96
+ */
97
+ PrivateLinkCollectorURL: string
98
+ }
@@ -0,0 +1,6 @@
1
+ import * as Models from "./apm_models"
2
+ import { Client } from "./apm_client"
3
+ export const v20210622 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ }
@@ -2517,6 +2517,12 @@ export interface CreateInstancePreResponse {
2517
2517
  注意:此字段可能返回 null,表示取不到有效值。
2518
2518
  */
2519
2519
  Data: CreateInstancePreData
2520
+
2521
+ /**
2522
+ * 删除是时间
2523
+ 注意:此字段可能返回 null,表示取不到有效值。
2524
+ */
2525
+ DeleteRouteTimestamp: string
2520
2526
  }
2521
2527
 
2522
2528
  /**
@@ -29,7 +29,7 @@ import {
29
29
  BatchModifyTargetWeightResponse,
30
30
  SetSecurityGroupForLoadbalancersRequest,
31
31
  CreateLoadBalancerRequest,
32
- RuleHealth,
32
+ DescribeLoadBalancerOverviewResponse,
33
33
  DeleteRuleRequest,
34
34
  CloneLoadBalancerRequest,
35
35
  DisassociateTargetGroupsResponse,
@@ -55,6 +55,7 @@ import {
55
55
  TargetGroupInstance,
56
56
  DescribeClassicalLBByInstanceIdResponse,
57
57
  CreateRuleResponse,
58
+ RuleHealth,
58
59
  DescribeExclusiveClustersResponse,
59
60
  RegisterTargetGroupInstancesResponse,
60
61
  ClassicalTargetInfo,
@@ -152,6 +153,7 @@ import {
152
153
  DeleteLoadBalancerResponse,
153
154
  AutoRewriteResponse,
154
155
  DeregisterTargetsResponse,
156
+ DescribeLoadBalancerOverviewRequest,
155
157
  RewriteTarget,
156
158
  Cluster,
157
159
  ModifyTargetWeightRequest,
@@ -749,6 +751,16 @@ export class Client extends AbstractClient {
749
751
  return this.request("CreateTargetGroup", req, cb)
750
752
  }
751
753
 
754
+ /**
755
+ * 查询运行中、隔离中、即将到期和负载均衡总数。
756
+ */
757
+ async DescribeLoadBalancerOverview(
758
+ req?: DescribeLoadBalancerOverviewRequest,
759
+ cb?: (error: string, rep: DescribeLoadBalancerOverviewResponse) => void
760
+ ): Promise<DescribeLoadBalancerOverviewResponse> {
761
+ return this.request("DescribeLoadBalancerOverview", req, cb)
762
+ }
763
+
752
764
  /**
753
765
  * DescribeTargets 接口用来查询负载均衡实例的某些监听器绑定的后端服务列表。
754
766
  */