tencentcloud-sdk-nodejs-intl-en 3.0.1421 → 3.0.1423

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1421",
3
+ "version": "3.0.1423",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -37,6 +37,7 @@ const DescribePartitionsRequest = models.DescribePartitionsRequest;
37
37
  const CheckFunctionResponse = models.CheckFunctionResponse;
38
38
  const ModifyAlarmResponse = models.ModifyAlarmResponse;
39
39
  const PreviewKafkaRechargeRequest = models.PreviewKafkaRechargeRequest;
40
+ const TopicIdAndRegion = models.TopicIdAndRegion;
40
41
  const DeliverConfig = models.DeliverConfig;
41
42
  const DescribeClusterBaseMetricConfigsRequest = models.DescribeClusterBaseMetricConfigsRequest;
42
43
  const DeleteMetricSubscribeRequest = models.DeleteMetricSubscribeRequest;
@@ -88,6 +89,7 @@ const DescribeClusterMetricConfigsRequest = models.DescribeClusterMetricConfigsR
88
89
  const DescribeConfigsRequest = models.DescribeConfigsRequest;
89
90
  const DlcPartitionExtra = models.DlcPartitionExtra;
90
91
  const DescribeKafkaConsumerTopicsResponse = models.DescribeKafkaConsumerTopicsResponse;
92
+ const DashboardTopicInfo = models.DashboardTopicInfo;
91
93
  const QueryMetricRequest = models.QueryMetricRequest;
92
94
  const CloudProductLogTaskInfo = models.CloudProductLogTaskInfo;
93
95
  const Instance = models.Instance;
@@ -100,6 +102,7 @@ const CreateHostMetricConfigResponse = models.CreateHostMetricConfigResponse;
100
102
  const ModifyConsumerGroupRequest = models.ModifyConsumerGroupRequest;
101
103
  const CreateTopicResponse = models.CreateTopicResponse;
102
104
  const DeleteAlarmResponse = models.DeleteAlarmResponse;
105
+ const PreviewLogStatistic = models.PreviewLogStatistic;
103
106
  const DescribeDlcDeliversResponse = models.DescribeDlcDeliversResponse;
104
107
  const ModifyIndexRequest = models.ModifyIndexRequest;
105
108
  const MachineInfo = models.MachineInfo;
@@ -116,7 +119,7 @@ const ModifyShipperRequest = models.ModifyShipperRequest;
116
119
  const MonitorNoticeRule = models.MonitorNoticeRule;
117
120
  const DescribeKafkaConsumerPreviewRequest = models.DescribeKafkaConsumerPreviewRequest;
118
121
  const CreateDeliverCloudFunctionResponse = models.CreateDeliverCloudFunctionResponse;
119
- const PreviewLogStatistic = models.PreviewLogStatistic;
122
+ const DescribeDashboardsResponse = models.DescribeDashboardsResponse;
120
123
  const CompressInfo = models.CompressInfo;
121
124
  const ModifyRemoteWriteTaskResponse = models.ModifyRemoteWriteTaskResponse;
122
125
  const CreateConfigResponse = models.CreateConfigResponse;
@@ -256,6 +259,7 @@ const CreateConsumerRequest = models.CreateConsumerRequest;
256
259
  const DeleteHostMetricConfigRequest = models.DeleteHostMetricConfigRequest;
257
260
  const DeleteMetricConfigResponse = models.DeleteMetricConfigResponse;
258
261
  const DescribeRemoteWriteTasksRequest = models.DescribeRemoteWriteTasksRequest;
262
+ const DashboardInfo = models.DashboardInfo;
259
263
  const DataTransformTaskInfo = models.DataTransformTaskInfo;
260
264
  const NoticeRule = models.NoticeRule;
261
265
  const ContentInfo = models.ContentInfo;
@@ -305,6 +309,7 @@ const DeleteMetricConfigRequest = models.DeleteMetricConfigRequest;
305
309
  const CreateEsRechargeRequest = models.CreateEsRechargeRequest;
306
310
  const ConsumerGroup = models.ConsumerGroup;
307
311
  const DlcFailTableInfo = models.DlcFailTableInfo;
312
+ const DescribeDashboardsRequest = models.DescribeDashboardsRequest;
308
313
  const DeleteNoticeContentResponse = models.DeleteNoticeContentResponse;
309
314
  const MetricYamlSpec = models.MetricYamlSpec;
310
315
  const DeleteCloudProductLogCollectionRequest = models.DeleteCloudProductLogCollectionRequest;
@@ -2386,6 +2391,17 @@ Note: Modifying the interface will directly overwrite historical data and change
2386
2391
  this.request("DescribeKafkaConsumerGroupDetail", req, resp, cb);
2387
2392
  }
2388
2393
 
2394
+ /**
2395
+ * This API is used to obtain the dashboard.
2396
+ * @param {DescribeDashboardsRequest} req
2397
+ * @param {function(string, DescribeDashboardsResponse):void} cb
2398
+ * @public
2399
+ */
2400
+ DescribeDashboards(req, cb) {
2401
+ let resp = new DescribeDashboardsResponse();
2402
+ this.request("DescribeDashboards", req, resp, cb);
2403
+ }
2404
+
2389
2405
  /**
2390
2406
  * This API is used to delete a notification group.
2391
2407
  * @param {DeleteAlarmNoticeRequest} req
@@ -1334,6 +1334,62 @@ When KafkaType is 1 and IsEncryptionAddr is true, Protocol is required.
1334
1334
  }
1335
1335
  }
1336
1336
 
1337
+ /**
1338
+ * Dashboard topic and region information
1339
+ * @class
1340
+ */
1341
+ class TopicIdAndRegion extends AbstractModel {
1342
+ constructor(){
1343
+ super();
1344
+
1345
+ /**
1346
+ * Log topic id
1347
+ * @type {string || null}
1348
+ */
1349
+ this.TopicId = null;
1350
+
1351
+ /**
1352
+ * The ID of the region where the log topic ID is located.
1353
+
1354
+ id, region, abbreviation information follows:
1355
+ - 1: Guangzhou, ap-guangzhou
1356
+ - 4: Shanghai, ap-shanghai
1357
+ -5, Hong Kong (China), ap-hongkong
1358
+ - 7: Shanghai Finance, ap-shanghai-fsi
1359
+ -8, Beijing, ap-beijing
1360
+ - 9, Singapore, ap-singapore
1361
+ - 11: Shenzhen Finance, ap-shenzhen-fsi
1362
+ -15, Silicon Valley, na-siliconvalley
1363
+ -16, Chengdu, ap-chengdu
1364
+ -17, Frankfurt, eu-frankfurt
1365
+ - 18, Seoul, ap-seoul
1366
+ - 19: Chongqing, ap-chongqing
1367
+ - 22, Virginia, na-ashburn
1368
+ - 23, Bangkok, ap-bangkok
1369
+ -25, Tokyo, ap-tokyo
1370
+ - 33, Nanjing, ap-nanjing
1371
+ -46, Beijing Finance, ap-beijing-fsi
1372
+ - 72, Jakarta, ap-jakarta
1373
+ -74, São Paulo, sa-saopaulo
1374
+ * @type {number || null}
1375
+ */
1376
+ this.RegionId = null;
1377
+
1378
+ }
1379
+
1380
+ /**
1381
+ * @private
1382
+ */
1383
+ deserialize(params) {
1384
+ if (!params) {
1385
+ return;
1386
+ }
1387
+ this.TopicId = 'TopicId' in params ? params.TopicId : null;
1388
+ this.RegionId = 'RegionId' in params ? params.RegionId : null;
1389
+
1390
+ }
1391
+ }
1392
+
1337
1393
  /**
1338
1394
  * Shipping configuration input parameter.
1339
1395
  * @class
@@ -1761,7 +1817,7 @@ class DeleteMachineGroupResponse extends AbstractModel {
1761
1817
  }
1762
1818
 
1763
1819
  /**
1764
- * Description of the tag pair bound to a resource instance when it is created
1820
+ * Description of tag pairs bound at the time of resource instance creation
1765
1821
  * @class
1766
1822
  */
1767
1823
  class Tag extends AbstractModel {
@@ -2479,7 +2535,7 @@ class DescribeDashboardSubscribesRequest extends AbstractModel {
2479
2535
  /**
2480
2536
  * dashboardId: Filter by [dashboard id]. Type: String. Required: No.
2481
2537
 
2482
- -Dashboard id. Obtain DashboardId through the [Get Dashboard](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) api.
2538
+ - Dashboard id. Obtain the DashboardId through the [Get Dashboard](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) API.
2483
2539
  -Input parameter example: dashboard-522a5609-1f41-4b11-8086-5afd1d7574f5
2484
2540
 
2485
2541
  Each request can have up to 10 Filters. The upper limit of Filter.Values is 100.
@@ -4333,6 +4389,63 @@ class DescribeKafkaConsumerTopicsResponse extends AbstractModel {
4333
4389
  }
4334
4390
  }
4335
4391
 
4392
+ /**
4393
+ * Dashboard associated topic information
4394
+ * @class
4395
+ */
4396
+ class DashboardTopicInfo extends AbstractModel {
4397
+ constructor(){
4398
+ super();
4399
+
4400
+ /**
4401
+ * Topic ID
4402
+ * @type {string || null}
4403
+ */
4404
+ this.TopicId = null;
4405
+
4406
+ /**
4407
+ * Region of the topic.
4408
+ - 1: Guangzhou
4409
+ -4: Shanghai
4410
+ - 5: Hong Kong (China)
4411
+ - 7: Shanghai Finance
4412
+ -8: Beijing
4413
+ -9: Singapore
4414
+ - 11: Shenzhen Finance
4415
+ - 15: Silicon Valley
4416
+ -16: Chengdu
4417
+ -17: Frankfurt
4418
+ - 18: Seoul
4419
+ - 19: Chongqing
4420
+ - 22: Virginia
4421
+ - 23: Bangkok
4422
+ - 25: Tokyo
4423
+ - 33: Nanjing
4424
+ - 36: Tianjin
4425
+ -39: Taipei (China)
4426
+ - 46: Beijing Finance
4427
+ -72: Jakarta
4428
+ -74: São Paulo
4429
+ -78: Shanghai Autonomous Driving Cloud
4430
+ * @type {string || null}
4431
+ */
4432
+ this.Region = null;
4433
+
4434
+ }
4435
+
4436
+ /**
4437
+ * @private
4438
+ */
4439
+ deserialize(params) {
4440
+ if (!params) {
4441
+ return;
4442
+ }
4443
+ this.TopicId = 'TopicId' in params ? params.TopicId : null;
4444
+ this.Region = 'Region' in params ? params.Region : null;
4445
+
4446
+ }
4447
+ }
4448
+
4336
4449
  /**
4337
4450
  * QueryMetric request structure.
4338
4451
  * @class
@@ -4887,6 +5000,74 @@ class DeleteAlarmResponse extends AbstractModel {
4887
5000
  }
4888
5001
  }
4889
5002
 
5003
+ /**
5004
+ * Preview data details
5005
+ * @class
5006
+ */
5007
+ class PreviewLogStatistic extends AbstractModel {
5008
+ constructor(){
5009
+ super();
5010
+
5011
+ /**
5012
+ * Log content
5013
+ * @type {string || null}
5014
+ */
5015
+ this.LogContent = null;
5016
+
5017
+ /**
5018
+ * Line number. Starts from 0.
5019
+ * @type {number || null}
5020
+ */
5021
+ this.LineNum = null;
5022
+
5023
+ /**
5024
+ * target log topic ID
5025
+ -Obtain the log topic Id through [Get Log Topic List](https://www.tencentcloud.com/document/product/614/56454?from_cn_redirect=1).
5026
+ * @type {string || null}
5027
+ */
5028
+ this.DstTopicId = null;
5029
+
5030
+ /**
5031
+ * Error message for failure. A null string "" indicates normal.
5032
+ * @type {string || null}
5033
+ */
5034
+ this.FailReason = null;
5035
+
5036
+ /**
5037
+ * Log time, format: `2024-05-07 17:13:17.105`
5038
+
5039
+ -Invalid input parameter
5040
+ -Valid at that time, the time format in logs
5041
+ * @type {string || null}
5042
+ */
5043
+ this.Time = null;
5044
+
5045
+ /**
5046
+ * Target topic name
5047
+ Note: This field may return null, indicating that no valid values can be obtained.
5048
+ * @type {string || null}
5049
+ */
5050
+ this.DstTopicName = null;
5051
+
5052
+ }
5053
+
5054
+ /**
5055
+ * @private
5056
+ */
5057
+ deserialize(params) {
5058
+ if (!params) {
5059
+ return;
5060
+ }
5061
+ this.LogContent = 'LogContent' in params ? params.LogContent : null;
5062
+ this.LineNum = 'LineNum' in params ? params.LineNum : null;
5063
+ this.DstTopicId = 'DstTopicId' in params ? params.DstTopicId : null;
5064
+ this.FailReason = 'FailReason' in params ? params.FailReason : null;
5065
+ this.Time = 'Time' in params ? params.Time : null;
5066
+ this.DstTopicName = 'DstTopicName' in params ? params.DstTopicName : null;
5067
+
5068
+ }
5069
+ }
5070
+
4890
5071
  /**
4891
5072
  * DescribeDlcDelivers response structure.
4892
5073
  * @class
@@ -6001,53 +6182,30 @@ class CreateDeliverCloudFunctionResponse extends AbstractModel {
6001
6182
  }
6002
6183
 
6003
6184
  /**
6004
- * Preview data details
6185
+ * DescribeDashboards response structure.
6005
6186
  * @class
6006
6187
  */
6007
- class PreviewLogStatistic extends AbstractModel {
6188
+ class DescribeDashboardsResponse extends AbstractModel {
6008
6189
  constructor(){
6009
6190
  super();
6010
6191
 
6011
6192
  /**
6012
- * Log content
6013
- * @type {string || null}
6014
- */
6015
- this.LogContent = null;
6016
-
6017
- /**
6018
- * Line number. Starts from 0.
6193
+ * Number of dashboards
6019
6194
  * @type {number || null}
6020
6195
  */
6021
- this.LineNum = null;
6022
-
6023
- /**
6024
- * target log topic ID
6025
- -Obtain the log topic Id through [Get Log Topic List](https://www.tencentcloud.com/document/product/614/56454?from_cn_redirect=1).
6026
- * @type {string || null}
6027
- */
6028
- this.DstTopicId = null;
6029
-
6030
- /**
6031
- * Error message for failure. A null string "" indicates normal.
6032
- * @type {string || null}
6033
- */
6034
- this.FailReason = null;
6196
+ this.TotalCount = null;
6035
6197
 
6036
6198
  /**
6037
- * Log time, format: `2024-05-07 17:13:17.105`
6038
-
6039
- -Invalid input parameter
6040
- -Valid at that time, the time format in logs
6041
- * @type {string || null}
6199
+ * Dashboard details
6200
+ * @type {Array.<DashboardInfo> || null}
6042
6201
  */
6043
- this.Time = null;
6202
+ this.DashboardInfos = null;
6044
6203
 
6045
6204
  /**
6046
- * Target topic name
6047
- Note: This field may return null, indicating that no valid values can be obtained.
6205
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6048
6206
  * @type {string || null}
6049
6207
  */
6050
- this.DstTopicName = null;
6208
+ this.RequestId = null;
6051
6209
 
6052
6210
  }
6053
6211
 
@@ -6058,12 +6216,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
6058
6216
  if (!params) {
6059
6217
  return;
6060
6218
  }
6061
- this.LogContent = 'LogContent' in params ? params.LogContent : null;
6062
- this.LineNum = 'LineNum' in params ? params.LineNum : null;
6063
- this.DstTopicId = 'DstTopicId' in params ? params.DstTopicId : null;
6064
- this.FailReason = 'FailReason' in params ? params.FailReason : null;
6065
- this.Time = 'Time' in params ? params.Time : null;
6066
- this.DstTopicName = 'DstTopicName' in params ? params.DstTopicName : null;
6219
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
6220
+
6221
+ if (params.DashboardInfos) {
6222
+ this.DashboardInfos = new Array();
6223
+ for (let z in params.DashboardInfos) {
6224
+ let obj = new DashboardInfo();
6225
+ obj.deserialize(params.DashboardInfos[z]);
6226
+ this.DashboardInfos.push(obj);
6227
+ }
6228
+ }
6229
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6067
6230
 
6068
6231
  }
6069
6232
  }
@@ -6729,7 +6892,7 @@ class CreateDashboardRequest extends AbstractModel {
6729
6892
  super();
6730
6893
 
6731
6894
  /**
6732
- * dashboard name
6895
+ * Dashboard name
6733
6896
  * @type {string || null}
6734
6897
  */
6735
6898
  this.DashboardName = null;
@@ -10609,7 +10772,7 @@ class SearchDashboardSubscribeRequest extends AbstractModel {
10609
10772
  super();
10610
10773
 
10611
10774
  /**
10612
- * Dashboard id. Obtain the DashboardId through the [Get Dashboard](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) API.
10775
+ * Dashboard id. Obtain the DashboardId through the [search for a dashboard.](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) API.
10613
10776
  * @type {string || null}
10614
10777
  */
10615
10778
  this.DashboardId = null;
@@ -10621,13 +10784,13 @@ class SearchDashboardSubscribeRequest extends AbstractModel {
10621
10784
  this.SubscribeData = null;
10622
10785
 
10623
10786
  /**
10624
- * Dashboard subscription Id. Obtain through the api [Dashboard subscription list](https://www.tencentcloud.com/document/api/614/105779?from_cn_redirect=1).
10787
+ * Dashboard subscription Id. Obtain the Id through the [dashboard subscription list](https://www.tencentcloud.com/document/api/614/105779?from_cn_redirect=1) api.
10625
10788
  * @type {number || null}
10626
10789
  */
10627
10790
  this.Id = null;
10628
10791
 
10629
10792
  /**
10630
- * Dashboard subscription Name. Obtain through the api [Dashboard subscription list](https://www.tencentcloud.com/document/api/614/105779?from_cn_redirect=1).
10793
+ * Dashboard subscription name. Obtain the Name through the [dashboard subscription list](https://www.tencentcloud.com/document/api/614/105779?from_cn_redirect=1) API.
10631
10794
  * @type {string || null}
10632
10795
  */
10633
10796
  this.Name = null;
@@ -14038,6 +14201,120 @@ Each request can have up to 10 Filters. The maximum of Filter.Values is 10.
14038
14201
  }
14039
14202
  }
14040
14203
 
14204
+ /**
14205
+ * Dashboard information
14206
+ * @class
14207
+ */
14208
+ class DashboardInfo extends AbstractModel {
14209
+ constructor(){
14210
+ super();
14211
+
14212
+ /**
14213
+ * Dashboard ID
14214
+ * @type {string || null}
14215
+ */
14216
+ this.DashboardId = null;
14217
+
14218
+ /**
14219
+ * Dashboard name
14220
+ * @type {string || null}
14221
+ */
14222
+ this.DashboardName = null;
14223
+
14224
+ /**
14225
+ * Dashboard data
14226
+ * @type {string || null}
14227
+ */
14228
+ this.Data = null;
14229
+
14230
+ /**
14231
+ * Time when the dashboard was created. Format: YYYY-MM-DD HH:MM:SS
14232
+ * @type {string || null}
14233
+ */
14234
+ this.CreateTime = null;
14235
+
14236
+ /**
14237
+ * If AssumerUin is not empty, it indicates the UIN of the service party that created the log topic.
14238
+ * @type {number || null}
14239
+ */
14240
+ this.AssumerUin = null;
14241
+
14242
+ /**
14243
+ * If RoleName is not empty, it indicates the role of the service provider creating the log set.
14244
+ * @type {string || null}
14245
+ */
14246
+ this.RoleName = null;
14247
+
14248
+ /**
14249
+ * If AssumerName is not empty, it indicates the name of the service provider creating the log topic.
14250
+ * @type {string || null}
14251
+ */
14252
+ this.AssumerName = null;
14253
+
14254
+ /**
14255
+ * Information of tag bound to log topic
14256
+ * @type {Array.<Tag> || null}
14257
+ */
14258
+ this.Tags = null;
14259
+
14260
+ /**
14261
+ * Dashboard region: For compatibility with old regions.
14262
+ * @type {string || null}
14263
+ */
14264
+ this.DashboardRegion = null;
14265
+
14266
+ /**
14267
+ * Modify dashboard time. Format: YYYY-MM-DD HH:MM:SS
14268
+ * @type {string || null}
14269
+ */
14270
+ this.UpdateTime = null;
14271
+
14272
+ /**
14273
+ * Topic-related information corresponding to the dashboard
14274
+ * @type {Array.<DashboardTopicInfo> || null}
14275
+ */
14276
+ this.DashboardTopicInfos = null;
14277
+
14278
+ }
14279
+
14280
+ /**
14281
+ * @private
14282
+ */
14283
+ deserialize(params) {
14284
+ if (!params) {
14285
+ return;
14286
+ }
14287
+ this.DashboardId = 'DashboardId' in params ? params.DashboardId : null;
14288
+ this.DashboardName = 'DashboardName' in params ? params.DashboardName : null;
14289
+ this.Data = 'Data' in params ? params.Data : null;
14290
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
14291
+ this.AssumerUin = 'AssumerUin' in params ? params.AssumerUin : null;
14292
+ this.RoleName = 'RoleName' in params ? params.RoleName : null;
14293
+ this.AssumerName = 'AssumerName' in params ? params.AssumerName : null;
14294
+
14295
+ if (params.Tags) {
14296
+ this.Tags = new Array();
14297
+ for (let z in params.Tags) {
14298
+ let obj = new Tag();
14299
+ obj.deserialize(params.Tags[z]);
14300
+ this.Tags.push(obj);
14301
+ }
14302
+ }
14303
+ this.DashboardRegion = 'DashboardRegion' in params ? params.DashboardRegion : null;
14304
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
14305
+
14306
+ if (params.DashboardTopicInfos) {
14307
+ this.DashboardTopicInfos = new Array();
14308
+ for (let z in params.DashboardTopicInfos) {
14309
+ let obj = new DashboardTopicInfo();
14310
+ obj.deserialize(params.DashboardTopicInfos[z]);
14311
+ this.DashboardTopicInfos.push(obj);
14312
+ }
14313
+ }
14314
+
14315
+ }
14316
+ }
14317
+
14041
14318
  /**
14042
14319
  * Basic information of a data processing task
14043
14320
  * @class
@@ -14925,7 +15202,7 @@ class MultiCondition extends AbstractModel {
14925
15202
  }
14926
15203
 
14927
15204
  /**
14928
- * Filter
15205
+ * Filters
14929
15206
  * @class
14930
15207
  */
14931
15208
  class Filter extends AbstractModel {
@@ -14933,13 +15210,13 @@ class Filter extends AbstractModel {
14933
15210
  super();
14934
15211
 
14935
15212
  /**
14936
- * Field to be filtered
15213
+ * Fields that need to be filtered.
14937
15214
  * @type {string || null}
14938
15215
  */
14939
15216
  this.Key = null;
14940
15217
 
14941
15218
  /**
14942
- * Value to be filtered
15219
+ * Values to be filtered
14943
15220
  * @type {Array.<string> || null}
14944
15221
  */
14945
15222
  this.Values = null;
@@ -16407,13 +16684,13 @@ class ModifyDashboardRequest extends AbstractModel {
16407
16684
  super();
16408
16685
 
16409
16686
  /**
16410
- * Dashboard id. Obtain the DashboardId through the [Get Dashboard](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) API.
16687
+ * Dashboard id. Obtain DashboardId through the [Get Dashboard](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) API.
16411
16688
  * @type {string || null}
16412
16689
  */
16413
16690
  this.DashboardId = null;
16414
16691
 
16415
16692
  /**
16416
- * dashboard name
16693
+ * Dashboard name
16417
16694
  * @type {string || null}
16418
16695
  */
16419
16696
  this.DashboardName = null;
@@ -16847,6 +17124,131 @@ class DlcFailTableInfo extends AbstractModel {
16847
17124
  }
16848
17125
  }
16849
17126
 
17127
+ /**
17128
+ * DescribeDashboards request structure.
17129
+ * @class
17130
+ */
17131
+ class DescribeDashboardsRequest extends AbstractModel {
17132
+ constructor(){
17133
+ super();
17134
+
17135
+ /**
17136
+ * Page offset. Default value: 0
17137
+ * @type {number || null}
17138
+ */
17139
+ this.Offset = null;
17140
+
17141
+ /**
17142
+ * Maximum number of entries per page. Default value: 20. Maximum value: 100.
17143
+ * @type {number || null}
17144
+ */
17145
+ this.Limit = null;
17146
+
17147
+ /**
17148
+ * -dashboardId filter by [dashboard id], type: String, required: No.
17149
+ -Example value: dashboard-522a5609-1f41-4b11-8086-5afd1d7574f5
17150
+ -dashboardName: Filter by fuzzy search as dashboard name. Type: String. Required: No.
17151
+ -Example value: Business dashboard
17152
+ -dashboardRegion filter by dashboard region (compatible with legacy dashboards). This property for dashboards created via cloud API, type: String, required: No.
17153
+ -See [Regions and Availability Zones](https://www.tencentcloud.com/document/product/614/18940?from_cn_redirect=1)
17154
+ -Example: ap-guangzhou
17155
+ - tagKey - String - Required: No - Filter by the tag key.
17156
+ -Example value:
17157
+ ```
17158
+ "Filters":[
17159
+ {
17160
+ "Key": "tagKey",
17161
+ "Values": [
17162
+ "tag-key-test"
17163
+ ]
17164
+ }
17165
+ ]
17166
+ ```
17167
+
17168
+ -tag:tagKey Filter by [tag key-value pair]. Replace tagKey with a specific tag key. Type: String. Required: No.
17169
+ -Refer to [Example 1](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1#4.-.E7.A4.BA.E4.BE.8B) for usage.
17170
+ ```
17171
+ "Filters": [
17172
+ {
17173
+ "Key": "tag:tag-key-test",
17174
+ "Values": [
17175
+ "12"
17176
+ ]
17177
+ }
17178
+ ]
17179
+ ```
17180
+
17181
+ Each request can have up to 10 Filters. The upper limit of Filter.Values is 100.
17182
+ * @type {Array.<Filter> || null}
17183
+ */
17184
+ this.Filters = null;
17185
+
17186
+ /**
17187
+ * Filter is performed by topicId and regionId.
17188
+ -topicId: Log topic id.
17189
+ - Obtain the log topic Id through [Get Log Topic List](https://www.tencentcloud.com/document/product/614/56454?from_cn_redirect=1).
17190
+ -Example value: 439a5304-08f9-484b-9c4d-46ff57133816
17191
+ - regionId
17192
+ - 1: Guangzhou
17193
+ -4: Shanghai
17194
+ -5: Hong Kong (China)
17195
+ - 7: Shanghai Finance
17196
+ - 8: Beijing
17197
+ -9: Singapore
17198
+ - 11: Shenzhen Finance
17199
+ - 15: Silicon Valley
17200
+ - 16: Chengdu
17201
+ - 17: Frankfurt
17202
+ - 18: Seoul
17203
+ - 19: Chongqing
17204
+ - 22: Virginia
17205
+ - 23: Bangkok
17206
+ - 25: Tokyo
17207
+ - 33: Nanjing
17208
+ - 36: Tianjin
17209
+ -39: Taipei (China)
17210
+ - 46: Beijing Finance
17211
+ -72: Jakarta
17212
+ -74: São Paulo
17213
+ -78: Shanghai Autonomous Driving Cloud
17214
+
17215
+ * @type {Array.<TopicIdAndRegion> || null}
17216
+ */
17217
+ this.TopicIdRegionFilter = null;
17218
+
17219
+ }
17220
+
17221
+ /**
17222
+ * @private
17223
+ */
17224
+ deserialize(params) {
17225
+ if (!params) {
17226
+ return;
17227
+ }
17228
+ this.Offset = 'Offset' in params ? params.Offset : null;
17229
+ this.Limit = 'Limit' in params ? params.Limit : null;
17230
+
17231
+ if (params.Filters) {
17232
+ this.Filters = new Array();
17233
+ for (let z in params.Filters) {
17234
+ let obj = new Filter();
17235
+ obj.deserialize(params.Filters[z]);
17236
+ this.Filters.push(obj);
17237
+ }
17238
+ }
17239
+
17240
+ if (params.TopicIdRegionFilter) {
17241
+ this.TopicIdRegionFilter = new Array();
17242
+ for (let z in params.TopicIdRegionFilter) {
17243
+ let obj = new TopicIdAndRegion();
17244
+ obj.deserialize(params.TopicIdRegionFilter[z]);
17245
+ this.TopicIdRegionFilter.push(obj);
17246
+ }
17247
+ }
17248
+
17249
+ }
17250
+ }
17251
+
16850
17252
  /**
16851
17253
  * DeleteNoticeContent response structure.
16852
17254
  * @class
@@ -17649,19 +18051,19 @@ class DashboardNoticeMode extends AbstractModel {
17649
18051
  -Group: Tencent Cloud user group
17650
18052
  -WeCom: wecom callback
17651
18053
  -Email: Custom email
17652
- -DingTalk
18054
+ - DingTalk: DingTalk
17653
18055
  -Lark
17654
18056
  * @type {string || null}
17655
18057
  */
17656
18058
  this.ReceiverType = null;
17657
18059
 
17658
18060
  /**
17659
- * Value of the known method.
18061
+ * Method corresponding value.
17660
18062
  -When ReceiverType is `WeCom`, `DingTalk`, or `Lark`, Values must be empty and the Url field is required.
17661
- -When ReceiverType is `Uin`, `Group`, or `Email`, the Values field is required and the Url field must be empty.
17662
- -When ReceiverType is `Uin`, Values is the user id. Obtain the sub-user UID by [querying sub-users](https://www.tencentcloud.com/document/product/598/34587?from_cn_redirect=1).
17663
- -When ReceiverType is `Group`, Values is the user Group id. Obtain user Group id by querying the user Group list (https://www.tencentcloud.com/document/product/598/34589?from_cn_redirect=1).
17664
- -When ReceiverType is `Email`, Values is the user email info.
18063
+ -When ReceiverType is `Uin`, `Group`, or `Email`, the Values field is required, and the Url field must be empty.
18064
+ -When ReceiverType is `Uin`, Values is the user id. Obtain the sub-user UID by pulling sub-users (https://www.tencentcloud.com/document/product/598/34587?from_cn_redirect=1).
18065
+ -When ReceiverType is `Group`, Values is the user Group id. Query the user Group list (https://www.tencentcloud.com/document/product/598/34589?from_cn_redirect=1) to obtain the user Group id.
18066
+ -When ReceiverType is `Email`, Values is the user email.
17665
18067
  * @type {Array.<string> || null}
17666
18068
  */
17667
18069
  this.Values = null;
@@ -17670,18 +18072,17 @@ class DashboardNoticeMode extends AbstractModel {
17670
18072
  * Dashboard notification channel.
17671
18073
 
17672
18074
  -Support: ["Email","Sms","WeChat","Phone"].
17673
- -When ReceiverType is `Email` or `WeCom`, ReceiverChannels is invalid.
17674
- Note: This field may return null, indicating that no valid values can be obtained.
18075
+ - When ReceiverType is `Email` or `WeCom`, ReceiverChannels is unavailable.
17675
18076
  * @type {Array.<string> || null}
17676
18077
  */
17677
18078
  this.ReceiverChannels = null;
17678
18079
 
17679
18080
  /**
17680
18081
  * Subscription method - Callback URL.
17681
- -When ReceiverType is `WeCom`, `DingTalk`, or `Lark`, the Url field is required as the callback URL of each channel.
17682
- -When the value is `WeCom`, the Url is the enterprise wechat callback address.
17683
- -When the value is `DingTalk`, Url is the chatbot Webhook address.
17684
- -When `Lark`, Url is the chatbot Webhook address.
18082
+ -When ReceiverType is `WeCom`, `DingTalk`, or `Lark`, the Url field is required as the callback URL for each channel.
18083
+ -When it is `WeCom`, the Url is the enterprise wechat callback address.
18084
+ -For `DingTalk`, the Url is the chatbot Webhook address.
18085
+ -When it is `Lark`, the Url is the chatbot Webhook address.
17685
18086
  -When ReceiverType is `Uin`, `Group`, or `Email`, the Url field must be empty.
17686
18087
  * @type {string || null}
17687
18088
  */
@@ -18352,13 +18753,13 @@ class ModifyDashboardSubscribeRequest extends AbstractModel {
18352
18753
  super();
18353
18754
 
18354
18755
  /**
18355
- * Dashboard subscription id. Obtain the id through the [Get Dashboard Subscription List](https://www.tencentcloud.com/document/api/614/105779?from_cn_redirect=1) api.
18756
+ * Dashboard subscription id. Obtain the Id through the [dashboard subscription list](https://www.tencentcloud.com/document/api/614/105779?from_cn_redirect=1) API.
18356
18757
  * @type {number || null}
18357
18758
  */
18358
18759
  this.Id = null;
18359
18760
 
18360
18761
  /**
18361
- * Dashboard id. Obtain the DashboardId through the [Get Dashboard](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) api.
18762
+ * Dashboard id. Obtain DashboardId through the [Get Dashboard](https://www.tencentcloud.com/document/api/614/95636?from_cn_redirect=1) API.
18362
18763
  * @type {string || null}
18363
18764
  */
18364
18765
  this.DashboardId = null;
@@ -18499,28 +18900,28 @@ class CreateDashboardSubscribeRequest extends AbstractModel {
18499
18900
  /**
18500
18901
  * Dashboard subscription name.
18501
18902
  Input limit:
18502
- -Cannot be empty
18503
- -Length cannot exceed 128 bytes
18504
- -Cannot contain character '|'
18903
+ -cannot be empty
18904
+ -Length cannot exceed 128 bytes.
18905
+ -Cannot contain the character '|'
18505
18906
  * @type {string || null}
18506
18907
  */
18507
18908
  this.Name = null;
18508
18909
 
18509
18910
  /**
18510
18911
  * Dashboard Id.
18511
- -Get the dashboard Id by [searching for the dashboard](https://www.tencentcloud.com/document/product/614/95636?from_cn_redirect=1).
18912
+ -Get the dashboard Id by [searching for a dashboard](https://www.tencentcloud.com/document/product/614/95636?from_cn_redirect=1).
18512
18913
  * @type {string || null}
18513
18914
  */
18514
18915
  this.DashboardId = null;
18515
18916
 
18516
18917
  /**
18517
18918
  * Subscription time cron expression, in format {seconds} {minutes} {hours} {date} {month} {weekday}; (valid data: {minutes} {hours} {date} {month} {weekday})
18518
- -{seconds} Value ranges from 0 to 59.
18919
+ -{seconds} value ranges from 0 to 59.
18519
18920
  -{Minutes} Value ranges from 0 to 59.
18520
18921
  -Hour. Value ranges from 0 to 23.
18521
- -{Date} value ranges from 1 to 31 AND (last day of month: L)
18922
+ -{Date} value ranges from 1 to 31 AND (dayOfMonth last day: L)
18522
18923
  -{Month} value ranges from 1 to 12.
18523
- -Week value ranges from 0 to 6 [0:Sunday, 6:Saturday]
18924
+ -Week value ranges from 0 to 6 [0:Sunday, 6:Saturday].
18524
18925
  * @type {string || null}
18525
18926
  */
18526
18927
  this.Cron = null;
@@ -21552,13 +21953,13 @@ class DashboardSubscribeInfo extends AbstractModel {
21552
21953
  this.CreateTime = null;
21553
21954
 
21554
21955
  /**
21555
- * Dashboard subscription record update time. Format: `YYYY-MM-DD HH:MM:SS`
21956
+ * Dashboard subscription record update time. Format: YYYY-MM-DD HH:MM:SS
21556
21957
  * @type {string || null}
21557
21958
  */
21558
21959
  this.UpdateTime = null;
21559
21960
 
21560
21961
  /**
21561
- * Time sent successfully of dashboard subscription record. Format: `YYYY-MM-DD HH:MM:SS`
21962
+ * Last time for successful sending of dashboard subscription record. Format: `YYYY-MM-DD HH:MM:SS`
21562
21963
  * @type {string || null}
21563
21964
  */
21564
21965
  this.LastTime = null;
@@ -26627,14 +27028,12 @@ class DashboardSubscribeData extends AbstractModel {
26627
27028
 
26628
27029
  /**
26629
27030
  * Dashboard subscription time. If this field is empty, the dashboard default time is used.
26630
- Note: This field may return null, indicating that no valid values can be obtained.
26631
27031
  * @type {Array.<string> || null}
26632
27032
  */
26633
27033
  this.DashboardTime = null;
26634
27034
 
26635
27035
  /**
26636
27036
  * Dashboard subscription template variable.
26637
- Note: This field may return null, indicating that no valid values can be obtained.
26638
27037
  * @type {Array.<DashboardTemplateVariable> || null}
26639
27038
  */
26640
27039
  this.TemplateVariables = null;
@@ -31730,6 +32129,7 @@ module.exports = {
31730
32129
  CheckFunctionResponse: CheckFunctionResponse,
31731
32130
  ModifyAlarmResponse: ModifyAlarmResponse,
31732
32131
  PreviewKafkaRechargeRequest: PreviewKafkaRechargeRequest,
32132
+ TopicIdAndRegion: TopicIdAndRegion,
31733
32133
  DeliverConfig: DeliverConfig,
31734
32134
  DescribeClusterBaseMetricConfigsRequest: DescribeClusterBaseMetricConfigsRequest,
31735
32135
  DeleteMetricSubscribeRequest: DeleteMetricSubscribeRequest,
@@ -31781,6 +32181,7 @@ module.exports = {
31781
32181
  DescribeConfigsRequest: DescribeConfigsRequest,
31782
32182
  DlcPartitionExtra: DlcPartitionExtra,
31783
32183
  DescribeKafkaConsumerTopicsResponse: DescribeKafkaConsumerTopicsResponse,
32184
+ DashboardTopicInfo: DashboardTopicInfo,
31784
32185
  QueryMetricRequest: QueryMetricRequest,
31785
32186
  CloudProductLogTaskInfo: CloudProductLogTaskInfo,
31786
32187
  Instance: Instance,
@@ -31793,6 +32194,7 @@ module.exports = {
31793
32194
  ModifyConsumerGroupRequest: ModifyConsumerGroupRequest,
31794
32195
  CreateTopicResponse: CreateTopicResponse,
31795
32196
  DeleteAlarmResponse: DeleteAlarmResponse,
32197
+ PreviewLogStatistic: PreviewLogStatistic,
31796
32198
  DescribeDlcDeliversResponse: DescribeDlcDeliversResponse,
31797
32199
  ModifyIndexRequest: ModifyIndexRequest,
31798
32200
  MachineInfo: MachineInfo,
@@ -31809,7 +32211,7 @@ module.exports = {
31809
32211
  MonitorNoticeRule: MonitorNoticeRule,
31810
32212
  DescribeKafkaConsumerPreviewRequest: DescribeKafkaConsumerPreviewRequest,
31811
32213
  CreateDeliverCloudFunctionResponse: CreateDeliverCloudFunctionResponse,
31812
- PreviewLogStatistic: PreviewLogStatistic,
32214
+ DescribeDashboardsResponse: DescribeDashboardsResponse,
31813
32215
  CompressInfo: CompressInfo,
31814
32216
  ModifyRemoteWriteTaskResponse: ModifyRemoteWriteTaskResponse,
31815
32217
  CreateConfigResponse: CreateConfigResponse,
@@ -31949,6 +32351,7 @@ module.exports = {
31949
32351
  DeleteHostMetricConfigRequest: DeleteHostMetricConfigRequest,
31950
32352
  DeleteMetricConfigResponse: DeleteMetricConfigResponse,
31951
32353
  DescribeRemoteWriteTasksRequest: DescribeRemoteWriteTasksRequest,
32354
+ DashboardInfo: DashboardInfo,
31952
32355
  DataTransformTaskInfo: DataTransformTaskInfo,
31953
32356
  NoticeRule: NoticeRule,
31954
32357
  ContentInfo: ContentInfo,
@@ -31998,6 +32401,7 @@ module.exports = {
31998
32401
  CreateEsRechargeRequest: CreateEsRechargeRequest,
31999
32402
  ConsumerGroup: ConsumerGroup,
32000
32403
  DlcFailTableInfo: DlcFailTableInfo,
32404
+ DescribeDashboardsRequest: DescribeDashboardsRequest,
32001
32405
  DeleteNoticeContentResponse: DeleteNoticeContentResponse,
32002
32406
  MetricYamlSpec: MetricYamlSpec,
32003
32407
  DeleteCloudProductLogCollectionRequest: DeleteCloudProductLogCollectionRequest,
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1421";
1
+ const sdkVersion = "3.0.1423";
2
2
  module.exports = sdkVersion
@@ -2486,7 +2486,7 @@ Optional alarm codes are: -9101 (occlusion or incomplete border), -9102 (photoco
2486
2486
 
2487
2487
  /**
2488
2488
  * BASIC: Basic version (Default).
2489
- ENHANCE: Enhance version, enable additional output of device risk level field.
2489
+ ENHANCED: Enhance version, enable additional output of device risk level field.
2490
2490
  PRO: Pro version, enable additional output of attack type fields.
2491
2491
  PLUS: Plus version, enable additional output of device risk level and attack type fields.
2492
2492
  Please contact us to access enhance version & plus version.
@@ -3395,7 +3395,11 @@ class GetFaceIdTokenIntlRequest extends AbstractModel {
3395
3395
  this.ActionList = null;
3396
3396
 
3397
3397
  /**
3398
- * <p>PLUS: PLUS version, PRO: PRO version, ENHANCED: enhanced, BASIC: basic (default)</p>
3398
+ * BASIC: Basic version (Default).
3399
+ ENHANCED: Enhance version, enable additional output of device risk level field.
3400
+ PRO: Pro version, enable additional output of attack type fields.
3401
+ PLUS: Plus version, enable additional output of device risk level and attack type fields.
3402
+ Please contact us to access enhance version & plus version.
3399
3403
  * @type {string || null}
3400
3404
  */
3401
3405
  this.SdkVersion = null;
@@ -3144,19 +3144,19 @@ class DescribeAssetImageRegistryRegistryDetailResponse extends AbstractModel {
3144
3144
  this.Url = null;
3145
3145
 
3146
3146
  /**
3147
- * Repository type, which can be `harbor`.
3147
+ * Repository type, which can be `harbor`
3148
3148
  * @type {string || null}
3149
3149
  */
3150
3150
  this.RegistryType = null;
3151
3151
 
3152
3152
  /**
3153
- * warehouse version
3153
+ * Registry version
3154
3154
  * @type {string || null}
3155
3155
  */
3156
3156
  this.RegistryVersion = null;
3157
3157
 
3158
3158
  /**
3159
- * Network type, which can be `public` (public network).
3159
+ * Network type, which can be `public` (public network)
3160
3160
  * @type {string || null}
3161
3161
  */
3162
3162
  this.NetType = null;
@@ -3168,7 +3168,7 @@ class DescribeAssetImageRegistryRegistryDetailResponse extends AbstractModel {
3168
3168
  this.RegistryRegion = null;
3169
3169
 
3170
3170
  /**
3171
- * rate limiting
3171
+ * Rate limiting
3172
3172
  * @type {number || null}
3173
3173
  */
3174
3174
  this.SpeedLimit = null;
@@ -3180,37 +3180,37 @@ class DescribeAssetImageRegistryRegistryDetailResponse extends AbstractModel {
3180
3180
  this.Insecure = null;
3181
3181
 
3182
3182
  /**
3183
- *
3183
+ * Connectivity test results
3184
3184
  * @type {Array.<RegistryConnDetectResult> || null}
3185
3185
  */
3186
3186
  this.ConnDetectDetail = null;
3187
3187
 
3188
3188
  /**
3189
- *
3189
+ * TCR Instance ID
3190
3190
  * @type {string || null}
3191
3191
  */
3192
3192
  this.InstanceID = null;
3193
3193
 
3194
3194
  /**
3195
- * Synchronization method. 0: full synchronization; 1: incremental synchronization.
3195
+ * Synchronization method. 0: full synchronization; 1: incremental synchronization
3196
3196
  * @type {number || null}
3197
3197
  */
3198
3198
  this.SyncMode = null;
3199
3199
 
3200
3200
  /**
3201
- * Whether authorization and scanning are performed automatically. For full synchronization, only images of the latest version are involved. For incremental synchronization, all new images are involved.
3201
+ * Whether authorization and scanning are performed automatically. For full synchronization, only images of the latest version are involved. For incremental synchronization, all new images are involved
3202
3202
  * @type {boolean || null}
3203
3203
  */
3204
3204
  this.NeedScan = null;
3205
3205
 
3206
3206
  /**
3207
- * Webhook access address.
3207
+ * Webhook access address
3208
3208
  * @type {string || null}
3209
3209
  */
3210
3210
  this.WebhookUrl = null;
3211
3211
 
3212
3212
  /**
3213
- * Webhook access token.
3213
+ * Webhook access token.
3214
3214
  * @type {string || null}
3215
3215
  */
3216
3216
  this.WebhookToken = null;