tencentcloud-sdk-nodejs-intl-en 3.0.1283 → 3.0.1285

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.
@@ -16,6 +16,34 @@
16
16
  */
17
17
  const AbstractModel = require("../../common/abstract_model");
18
18
 
19
+ /**
20
+ * DescribeCkafkaVersion response structure.
21
+ * @class
22
+ */
23
+ class DescribeCkafkaVersionResponse extends AbstractModel {
24
+ constructor(){
25
+ super();
26
+
27
+ /**
28
+ * 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.
29
+ * @type {string || null}
30
+ */
31
+ this.RequestId = null;
32
+
33
+ }
34
+
35
+ /**
36
+ * @private
37
+ */
38
+ deserialize(params) {
39
+ if (!params) {
40
+ return;
41
+ }
42
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
43
+
44
+ }
45
+ }
46
+
19
47
  /**
20
48
  * Topic details
21
49
  * @class
@@ -1391,6 +1419,69 @@ class GroupInfoTopics extends AbstractModel {
1391
1419
  }
1392
1420
  }
1393
1421
 
1422
+ /**
1423
+ * InstanceScalingDown request structure.
1424
+ * @class
1425
+ */
1426
+ class InstanceScalingDownRequest extends AbstractModel {
1427
+ constructor(){
1428
+ super();
1429
+
1430
+ /**
1431
+ * ckafka cluster instance Id. can be obtained through the [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1) api.
1432
+ * @type {string || null}
1433
+ */
1434
+ this.InstanceId = null;
1435
+
1436
+ /**
1437
+ * Shrink mode. 1: stable mode.
1438
+ 2. specifies high-speed configuration change.
1439
+ * @type {number || null}
1440
+ */
1441
+ this.UpgradeStrategy = null;
1442
+
1443
+ /**
1444
+ * Specifies the disk capacity in GB. value range: maximum value 500000, step length 100.
1445
+ The specifications and limitations can be viewed through the following link: https://www.tencentcloud.comom/document/product/597/122562.?from_cn_redirect=1
1446
+
1447
+
1448
+ * @type {number || null}
1449
+ */
1450
+ this.DiskSize = null;
1451
+
1452
+ /**
1453
+ * Peak bandwidth in MB/s.
1454
+ Specifies the url (https://www.tencentcloud.comom/document/product/597/11745?from_cn_redirect=1) to view specification limits and corresponding step length.
1455
+ * @type {number || null}
1456
+ */
1457
+ this.BandWidth = null;
1458
+
1459
+ /**
1460
+ * Partition upper limit maximum value of 40000, step length 100.
1461
+ Specification limits can be viewed through the following link: https://www.tencentcloud.comom/document/product/597/122563.?from_cn_redirect=1
1462
+
1463
+ * @type {number || null}
1464
+ */
1465
+ this.Partition = null;
1466
+
1467
+ }
1468
+
1469
+ /**
1470
+ * @private
1471
+ */
1472
+ deserialize(params) {
1473
+ if (!params) {
1474
+ return;
1475
+ }
1476
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1477
+ this.UpgradeStrategy = 'UpgradeStrategy' in params ? params.UpgradeStrategy : null;
1478
+ this.DiskSize = 'DiskSize' in params ? params.DiskSize : null;
1479
+ this.BandWidth = 'BandWidth' in params ? params.BandWidth : null;
1480
+ this.Partition = 'Partition' in params ? params.Partition : null;
1481
+
1482
+ }
1483
+ }
1484
+
1394
1485
  /**
1395
1486
  * FetchMessageListByOffset request structure.
1396
1487
  * @class
@@ -1487,6 +1578,62 @@ class DescribeSecurityGroupRoutesResponse extends AbstractModel {
1487
1578
  }
1488
1579
  }
1489
1580
 
1581
+ /**
1582
+ * UpgradeBrokerVersion request structure.
1583
+ * @class
1584
+ */
1585
+ class UpgradeBrokerVersionRequest extends AbstractModel {
1586
+ constructor(){
1587
+ super();
1588
+
1589
+ /**
1590
+ * The ckafka cluster instance Id.
1591
+ * @type {string || null}
1592
+ */
1593
+ this.InstanceId = null;
1594
+
1595
+ /**
1596
+ * 1. smooth configuration upgrade 2. vertical configuration upgrade.
1597
+ * @type {number || null}
1598
+ */
1599
+ this.Type = null;
1600
+
1601
+ /**
1602
+ * Version number
1603
+ * @type {string || null}
1604
+ */
1605
+ this.SourceVersion = null;
1606
+
1607
+ /**
1608
+ * Version number
1609
+ * @type {string || null}
1610
+ */
1611
+ this.TargetVersion = null;
1612
+
1613
+ /**
1614
+ * Delay time.
1615
+ * @type {string || null}
1616
+ */
1617
+ this.DelayTimeStamp = null;
1618
+
1619
+ }
1620
+
1621
+ /**
1622
+ * @private
1623
+ */
1624
+ deserialize(params) {
1625
+ if (!params) {
1626
+ return;
1627
+ }
1628
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1629
+ this.Type = 'Type' in params ? params.Type : null;
1630
+ this.SourceVersion = 'SourceVersion' in params ? params.SourceVersion : null;
1631
+ this.TargetVersion = 'TargetVersion' in params ? params.TargetVersion : null;
1632
+ this.DelayTimeStamp = 'DelayTimeStamp' in params ? params.DelayTimeStamp : null;
1633
+
1634
+ }
1635
+ }
1636
+
1490
1637
  /**
1491
1638
  * ModifyInstancePre request structure.
1492
1639
  * @class
@@ -1926,6 +2073,41 @@ class DescribeAclRuleRequest extends AbstractModel {
1926
2073
  }
1927
2074
  }
1928
2075
 
2076
+ /**
2077
+ * Instance route.
2078
+ * @class
2079
+ */
2080
+ class InstanceRoute extends AbstractModel {
2081
+ constructor(){
2082
+ super();
2083
+
2084
+ /**
2085
+ * The ckafka cluster instance Id.
2086
+ * @type {string || null}
2087
+ */
2088
+ this.InstanceId = null;
2089
+
2090
+ /**
2091
+ * Route ID
2092
+ * @type {number || null}
2093
+ */
2094
+ this.RouteId = null;
2095
+
2096
+ }
2097
+
2098
+ /**
2099
+ * @private
2100
+ */
2101
+ deserialize(params) {
2102
+ if (!params) {
2103
+ return;
2104
+ }
2105
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
2106
+ this.RouteId = 'RouteId' in params ? params.RouteId : null;
2107
+
2108
+ }
2109
+ }
2110
+
1929
2111
  /**
1930
2112
  * DescribeACL response structure.
1931
2113
  * @class
@@ -2961,24 +3143,42 @@ class DescribeDatahubTopicResponse extends AbstractModel {
2961
3143
  }
2962
3144
 
2963
3145
  /**
2964
- * DescribeTopicAttributes response structure.
3146
+ * DescribeConsumerGroup request structure.
2965
3147
  * @class
2966
3148
  */
2967
- class DescribeTopicAttributesResponse extends AbstractModel {
3149
+ class DescribeConsumerGroupRequest extends AbstractModel {
2968
3150
  constructor(){
2969
3151
  super();
2970
3152
 
2971
3153
  /**
2972
- * Returned result object
2973
- * @type {TopicAttributesResponse || null}
3154
+ * ckafka cluster instance Id. obtain through the API [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1).
3155
+ * @type {string || null}
2974
3156
  */
2975
- this.Result = null;
3157
+ this.InstanceId = null;
2976
3158
 
2977
3159
  /**
2978
- * 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.
3160
+ * Specifies the group name you want to query.
2979
3161
  * @type {string || null}
2980
3162
  */
2981
- this.RequestId = null;
3163
+ this.GroupName = null;
3164
+
3165
+ /**
3166
+ * Specifies the corresponding topic name in the group to be queried by the user. if this parameter is specified while the group is unspecified, ignore this parameter.
3167
+ * @type {string || null}
3168
+ */
3169
+ this.TopicName = null;
3170
+
3171
+ /**
3172
+ * Returns the limit quantity of the consumption group. supports a maximum of 50.
3173
+ * @type {number || null}
3174
+ */
3175
+ this.Limit = null;
3176
+
3177
+ /**
3178
+ * Specifies the starting offset amount of the consumer group list.
3179
+ * @type {number || null}
3180
+ */
3181
+ this.Offset = null;
2982
3182
 
2983
3183
  }
2984
3184
 
@@ -2989,13 +3189,11 @@ class DescribeTopicAttributesResponse extends AbstractModel {
2989
3189
  if (!params) {
2990
3190
  return;
2991
3191
  }
2992
-
2993
- if (params.Result) {
2994
- let obj = new TopicAttributesResponse();
2995
- obj.deserialize(params.Result)
2996
- this.Result = obj;
2997
- }
2998
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
3192
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
3193
+ this.GroupName = 'GroupName' in params ? params.GroupName : null;
3194
+ this.TopicName = 'TopicName' in params ? params.TopicName : null;
3195
+ this.Limit = 'Limit' in params ? params.Limit : null;
3196
+ this.Offset = 'Offset' in params ? params.Offset : null;
2999
3197
 
3000
3198
  }
3001
3199
  }
@@ -3313,6 +3511,41 @@ class DescribeGroupResponse extends AbstractModel {
3313
3511
  }
3314
3512
  }
3315
3513
 
3514
+ /**
3515
+ * DeleteAclRule request structure.
3516
+ * @class
3517
+ */
3518
+ class DeleteAclRuleRequest extends AbstractModel {
3519
+ constructor(){
3520
+ super();
3521
+
3522
+ /**
3523
+ * Instance id information. you can obtain it through the [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1) api.
3524
+ * @type {string || null}
3525
+ */
3526
+ this.InstanceId = null;
3527
+
3528
+ /**
3529
+ * acl rule name, obtain through the API DescribeAclRule.
3530
+ * @type {string || null}
3531
+ */
3532
+ this.RuleName = null;
3533
+
3534
+ }
3535
+
3536
+ /**
3537
+ * @private
3538
+ */
3539
+ deserialize(params) {
3540
+ if (!params) {
3541
+ return;
3542
+ }
3543
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
3544
+ this.RuleName = 'RuleName' in params ? params.RuleName : null;
3545
+
3546
+ }
3547
+ }
3548
+
3316
3549
  /**
3317
3550
  * Configuration object for modifying instance attributes
3318
3551
  * @class
@@ -3495,6 +3728,12 @@ class DescribeRouteRequest extends AbstractModel {
3495
3728
  */
3496
3729
  this.RouteId = null;
3497
3730
 
3731
+ /**
3732
+ * Specifies whether to display the primary route. when true, the routing list will additionally display the primary route information during instance creation (not affected by InternalFlag or UsedFor parameter filtering).
3733
+ * @type {boolean || null}
3734
+ */
3735
+ this.MainRouteFlag = null;
3736
+
3498
3737
  }
3499
3738
 
3500
3739
  /**
@@ -3506,6 +3745,7 @@ class DescribeRouteRequest extends AbstractModel {
3506
3745
  }
3507
3746
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
3508
3747
  this.RouteId = 'RouteId' in params ? params.RouteId : null;
3748
+ this.MainRouteFlag = 'MainRouteFlag' in params ? params.MainRouteFlag : null;
3509
3749
 
3510
3750
  }
3511
3751
  }
@@ -3816,19 +4056,25 @@ class ClusterInfo extends AbstractModel {
3816
4056
  }
3817
4057
 
3818
4058
  /**
3819
- * DeleteInstancePost request structure.
4059
+ * DeleteGroup request structure.
3820
4060
  * @class
3821
4061
  */
3822
- class DeleteInstancePostRequest extends AbstractModel {
4062
+ class DeleteGroupRequest extends AbstractModel {
3823
4063
  constructor(){
3824
4064
  super();
3825
4065
 
3826
4066
  /**
3827
- * The ckafka cluster instance Id, which can be obtained through the [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1) api.
4067
+ * The ckafka cluster instance Id. can be obtained through the [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1) api.
3828
4068
  * @type {string || null}
3829
4069
  */
3830
4070
  this.InstanceId = null;
3831
4071
 
4072
+ /**
4073
+ * Consumer group name, which can be obtained through the DescribeConsumerGroup API (https://www.tencentcloud.comom/document/product/597/40841?from_cn_redirect=1).
4074
+ * @type {string || null}
4075
+ */
4076
+ this.Group = null;
4077
+
3832
4078
  }
3833
4079
 
3834
4080
  /**
@@ -3839,29 +4085,58 @@ class DeleteInstancePostRequest extends AbstractModel {
3839
4085
  return;
3840
4086
  }
3841
4087
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
4088
+ this.Group = 'Group' in params ? params.Group : null;
3842
4089
 
3843
4090
  }
3844
4091
  }
3845
4092
 
3846
4093
  /**
3847
- * DeleteUser response structure.
4094
+ * DeleteInstancePost request structure.
3848
4095
  * @class
3849
4096
  */
3850
- class DeleteUserResponse extends AbstractModel {
4097
+ class DeleteInstancePostRequest extends AbstractModel {
3851
4098
  constructor(){
3852
4099
  super();
3853
4100
 
3854
4101
  /**
3855
- * Returned result
3856
- * @type {JgwOperateResponse || null}
3857
- */
3858
- this.Result = null;
3859
-
3860
- /**
3861
- * 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.
4102
+ * The ckafka cluster instance Id, which can be obtained through the [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1) api.
3862
4103
  * @type {string || null}
3863
4104
  */
3864
- this.RequestId = null;
4105
+ this.InstanceId = null;
4106
+
4107
+ }
4108
+
4109
+ /**
4110
+ * @private
4111
+ */
4112
+ deserialize(params) {
4113
+ if (!params) {
4114
+ return;
4115
+ }
4116
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
4117
+
4118
+ }
4119
+ }
4120
+
4121
+ /**
4122
+ * DeleteUser response structure.
4123
+ * @class
4124
+ */
4125
+ class DeleteUserResponse extends AbstractModel {
4126
+ constructor(){
4127
+ super();
4128
+
4129
+ /**
4130
+ * Returned result
4131
+ * @type {JgwOperateResponse || null}
4132
+ */
4133
+ this.Result = null;
4134
+
4135
+ /**
4136
+ * 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.
4137
+ * @type {string || null}
4138
+ */
4139
+ this.RequestId = null;
3865
4140
 
3866
4141
  }
3867
4142
 
@@ -4036,24 +4311,24 @@ class DescribeTopicSyncReplicaResponse extends AbstractModel {
4036
4311
  }
4037
4312
 
4038
4313
  /**
4039
- * DescribeAppInfo request structure.
4314
+ * `TopicResponse` returned uniformly
4040
4315
  * @class
4041
4316
  */
4042
- class DescribeAppInfoRequest extends AbstractModel {
4317
+ class TopicResult extends AbstractModel {
4043
4318
  constructor(){
4044
4319
  super();
4045
4320
 
4046
4321
  /**
4047
- * Offset position
4048
- * @type {number || null}
4322
+ * List of returned topic information.
4323
+ * @type {Array.<Topic> || null}
4049
4324
  */
4050
- this.Offset = null;
4325
+ this.TopicList = null;
4051
4326
 
4052
4327
  /**
4053
- * Maximum number of users to be queried in this request. Maximum value: 50. Default value: 50
4328
+ * Number of eligible topics.
4054
4329
  * @type {number || null}
4055
4330
  */
4056
- this.Limit = null;
4331
+ this.TotalCount = null;
4057
4332
 
4058
4333
  }
4059
4334
 
@@ -4064,8 +4339,16 @@ class DescribeAppInfoRequest extends AbstractModel {
4064
4339
  if (!params) {
4065
4340
  return;
4066
4341
  }
4067
- this.Offset = 'Offset' in params ? params.Offset : null;
4068
- this.Limit = 'Limit' in params ? params.Limit : null;
4342
+
4343
+ if (params.TopicList) {
4344
+ this.TopicList = new Array();
4345
+ for (let z in params.TopicList) {
4346
+ let obj = new Topic();
4347
+ obj.deserialize(params.TopicList[z]);
4348
+ this.TopicList.push(obj);
4349
+ }
4350
+ }
4351
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
4069
4352
 
4070
4353
  }
4071
4354
  }
@@ -4647,6 +4930,12 @@ class CreateTopicRequest extends AbstractModel {
4647
4930
  */
4648
4931
  this.Tags = null;
4649
4932
 
4933
+ /**
4934
+ * Time type for message saving. valid values: CreateTime/LogAppendTime.
4935
+ * @type {string || null}
4936
+ */
4937
+ this.LogMsgTimestampType = null;
4938
+
4650
4939
  }
4651
4940
 
4652
4941
  /**
@@ -4681,6 +4970,7 @@ class CreateTopicRequest extends AbstractModel {
4681
4970
  this.Tags.push(obj);
4682
4971
  }
4683
4972
  }
4973
+ this.LogMsgTimestampType = 'LogMsgTimestampType' in params ? params.LogMsgTimestampType : null;
4684
4974
 
4685
4975
  }
4686
4976
  }
@@ -5154,6 +5444,41 @@ class InstanceConfigDO extends AbstractModel {
5154
5444
  }
5155
5445
  }
5156
5446
 
5447
+ /**
5448
+ * DeleteAclRule response structure.
5449
+ * @class
5450
+ */
5451
+ class DeleteAclRuleResponse extends AbstractModel {
5452
+ constructor(){
5453
+ super();
5454
+
5455
+ /**
5456
+ * Returns the rule ID of the deleted rule.
5457
+ * @type {number || null}
5458
+ */
5459
+ this.Result = null;
5460
+
5461
+ /**
5462
+ * 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.
5463
+ * @type {string || null}
5464
+ */
5465
+ this.RequestId = null;
5466
+
5467
+ }
5468
+
5469
+ /**
5470
+ * @private
5471
+ */
5472
+ deserialize(params) {
5473
+ if (!params) {
5474
+ return;
5475
+ }
5476
+ this.Result = 'Result' in params ? params.Result : null;
5477
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5478
+
5479
+ }
5480
+ }
5481
+
5157
5482
  /**
5158
5483
  * Returned user entity
5159
5484
  * @class
@@ -5321,48 +5646,24 @@ class ModifyTopicAttributesResponse extends AbstractModel {
5321
5646
  }
5322
5647
 
5323
5648
  /**
5324
- * DescribeDatahubTopics request structure.
5649
+ * Message content that can be sent in batches
5325
5650
  * @class
5326
5651
  */
5327
- class DescribeDatahubTopicsRequest extends AbstractModel {
5652
+ class BatchContent extends AbstractModel {
5328
5653
  constructor(){
5329
5654
  super();
5330
5655
 
5331
5656
  /**
5332
- * Search term.
5333
- * @type {string || null}
5334
- */
5335
- this.SearchWord = null;
5336
-
5337
- /**
5338
- * Query offset, which defaults to `0`.
5339
- * @type {number || null}
5340
- */
5341
- this.Offset = null;
5342
-
5343
- /**
5344
- * Maximum number of results to be returned in this request. Default value: `50`. Maximum value: `50`.
5345
- * @type {number || null}
5346
- */
5347
- this.Limit = null;
5348
-
5349
- /**
5350
- * Specifies whether to query the topic list from the connection.
5351
- * @type {boolean || null}
5352
- */
5353
- this.QueryFromConnectResource = null;
5354
-
5355
- /**
5356
- * Connection ID.
5657
+ * Message body that is sent.
5357
5658
  * @type {string || null}
5358
5659
  */
5359
- this.ConnectResourceId = null;
5660
+ this.Body = null;
5360
5661
 
5361
5662
  /**
5362
- * topic resource expression.
5663
+ * Message sending key name.
5363
5664
  * @type {string || null}
5364
5665
  */
5365
- this.TopicRegularExpression = null;
5666
+ this.Key = null;
5366
5667
 
5367
5668
  }
5368
5669
 
@@ -5373,12 +5674,8 @@ class DescribeDatahubTopicsRequest extends AbstractModel {
5373
5674
  if (!params) {
5374
5675
  return;
5375
5676
  }
5376
- this.SearchWord = 'SearchWord' in params ? params.SearchWord : null;
5377
- this.Offset = 'Offset' in params ? params.Offset : null;
5378
- this.Limit = 'Limit' in params ? params.Limit : null;
5379
- this.QueryFromConnectResource = 'QueryFromConnectResource' in params ? params.QueryFromConnectResource : null;
5380
- this.ConnectResourceId = 'ConnectResourceId' in params ? params.ConnectResourceId : null;
5381
- this.TopicRegularExpression = 'TopicRegularExpression' in params ? params.TopicRegularExpression : null;
5677
+ this.Body = 'Body' in params ? params.Body : null;
5678
+ this.Key = 'Key' in params ? params.Key : null;
5382
5679
 
5383
5680
  }
5384
5681
  }
@@ -5451,41 +5748,6 @@ class DescribeUserResponse extends AbstractModel {
5451
5748
  }
5452
5749
  }
5453
5750
 
5454
- /**
5455
- * `AppId` query result
5456
- * @class
5457
- */
5458
- class AppIdResponse extends AbstractModel {
5459
- constructor(){
5460
- super();
5461
-
5462
- /**
5463
- * Number of eligible `AppId`
5464
- * @type {number || null}
5465
- */
5466
- this.TotalCount = null;
5467
-
5468
- /**
5469
- * Specifies the App Id list that meets the requirements.
5470
- * @type {Array.<number> || null}
5471
- */
5472
- this.AppIdList = null;
5473
-
5474
- }
5475
-
5476
- /**
5477
- * @private
5478
- */
5479
- deserialize(params) {
5480
- if (!params) {
5481
- return;
5482
- }
5483
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
5484
- this.AppIdList = 'AppIdList' in params ? params.AppIdList : null;
5485
-
5486
- }
5487
- }
5488
-
5489
5751
  /**
5490
5752
  * DescribeTopic request structure.
5491
5753
  * @class
@@ -5724,24 +5986,24 @@ Stable: each consumer in the consumer group has joined and is in stable state
5724
5986
  }
5725
5987
 
5726
5988
  /**
5727
- * DescribeAppInfo response structure.
5989
+ * Returned result of consumer group offset
5728
5990
  * @class
5729
5991
  */
5730
- class DescribeAppInfoResponse extends AbstractModel {
5992
+ class GroupOffsetResponse extends AbstractModel {
5731
5993
  constructor(){
5732
5994
  super();
5733
5995
 
5734
5996
  /**
5735
- * Returned list of eligible `AppId`
5736
- * @type {AppIdResponse || null}
5997
+ * Total number of eligible results
5998
+ * @type {number || null}
5737
5999
  */
5738
- this.Result = null;
6000
+ this.TotalCount = null;
5739
6001
 
5740
6002
  /**
5741
- * 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.
5742
- * @type {string || null}
6003
+ * The topic partition array, where each element is a json object.
6004
+ * @type {Array.<GroupOffsetTopic> || null}
5743
6005
  */
5744
- this.RequestId = null;
6006
+ this.TopicList = null;
5745
6007
 
5746
6008
  }
5747
6009
 
@@ -5752,13 +6014,16 @@ class DescribeAppInfoResponse extends AbstractModel {
5752
6014
  if (!params) {
5753
6015
  return;
5754
6016
  }
6017
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
5755
6018
 
5756
- if (params.Result) {
5757
- let obj = new AppIdResponse();
5758
- obj.deserialize(params.Result)
5759
- this.Result = obj;
6019
+ if (params.TopicList) {
6020
+ this.TopicList = new Array();
6021
+ for (let z in params.TopicList) {
6022
+ let obj = new GroupOffsetTopic();
6023
+ obj.deserialize(params.TopicList[z]);
6024
+ this.TopicList.push(obj);
6025
+ }
5760
6026
  }
5761
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
5762
6027
 
5763
6028
  }
5764
6029
  }
@@ -5815,97 +6080,97 @@ class ZoneResponse extends AbstractModel {
5815
6080
  super();
5816
6081
 
5817
6082
  /**
5818
- * Zone list
6083
+ * <P>Specifies the zone list.</p>.
5819
6084
  * @type {Array.<ZoneInfo> || null}
5820
6085
  */
5821
6086
  this.ZoneList = null;
5822
6087
 
5823
6088
  /**
5824
- * Maximum number of instances to be purchased
6089
+ * <P>Maximum number of instances that can be purchased.</p>.
5825
6090
  * @type {number || null}
5826
6091
  */
5827
6092
  this.MaxBuyInstanceNum = null;
5828
6093
 
5829
6094
  /**
5830
- * Maximum bandwidth in MB/S
6095
+ * <p>Maximum purchase bandwidth in Mb/s.</p>.
5831
6096
  * @type {number || null}
5832
6097
  */
5833
6098
  this.MaxBandwidth = null;
5834
6099
 
5835
6100
  /**
5836
- * Pay-as-you-go unit price
6101
+ * <P>Unit price for postpayment.</p>.
5837
6102
  * @type {Price || null}
5838
6103
  */
5839
6104
  this.UnitPrice = null;
5840
6105
 
5841
6106
  /**
5842
- * Pay-as-you-go unit message price
6107
+ * <P>Message unit price for postpayment.</p>.
5843
6108
  * @type {Price || null}
5844
6109
  */
5845
6110
  this.MessagePrice = null;
5846
6111
 
5847
6112
  /**
5848
- * Specifies the user-exclusive cluster info.
6113
+ * <P>User-Exclusive cluster information.</p>.
5849
6114
  * @type {Array.<ClusterInfo> || null}
5850
6115
  */
5851
6116
  this.ClusterInfo = null;
5852
6117
 
5853
6118
  /**
5854
- * Purchase the standard version configuration.
6119
+ * <P>Specifies the standard version configuration to purchase.</p>.
5855
6120
  * @type {string || null}
5856
6121
  */
5857
6122
  this.Standard = null;
5858
6123
 
5859
6124
  /**
5860
- * Purchase the standard version S2 configuration.
6125
+ * <P>Specifies the purchase of standard version s2 configuration.</p>.
5861
6126
  * @type {string || null}
5862
6127
  */
5863
6128
  this.StandardS2 = null;
5864
6129
 
5865
6130
  /**
5866
- * Specifies the configuration for purchasing the professional edition.
6131
+ * <P>Specifies the configuration for purchasing professional edition.</p>.
5867
6132
  * @type {string || null}
5868
6133
  */
5869
6134
  this.Profession = null;
5870
6135
 
5871
6136
  /**
5872
- * Purchase physical dedicated edition configuration.
6137
+ * <P>Purchase physical dedicated edition configuration.</p>.
5873
6138
  * @type {string || null}
5874
6139
  */
5875
6140
  this.Physical = null;
5876
6141
 
5877
6142
  /**
5878
- * Public network bandwidth. minimum 3 Mbps. maximum 999 Mbps. only the pro edition supports filling in. abandoned, meaningless.
6143
+ * <p>Specifies the public network bandwidth. valid values: 3Mbps to 999Mbps. only supported in pro edition. abandoned, meaningless.</p>.
5879
6144
  * @type {string || null}
5880
6145
  */
5881
6146
  this.PublicNetwork = null;
5882
6147
 
5883
6148
  /**
5884
- * Configures the public network bandwidth.
6149
+ * <P>Public network bandwidth configuration.</p>.
5885
6150
  * @type {string || null}
5886
6151
  */
5887
6152
  this.PublicNetworkLimit = null;
5888
6153
 
5889
6154
  /**
5890
- * Request ID.
6155
+ * <p>Request Id.</p>.
5891
6156
  * @type {string || null}
5892
6157
  */
5893
6158
  this.RequestId = null;
5894
6159
 
5895
6160
  /**
5896
- * Pagination Offset
6161
+ * <P>Specifies the pagination offset.</p>.
5897
6162
  * @type {number || null}
5898
6163
  */
5899
6164
  this.Offset = null;
5900
6165
 
5901
6166
  /**
5902
- * Pagination Limit
6167
+ * <P>Specifies the pagination limit.</p>.
5903
6168
  * @type {number || null}
5904
6169
  */
5905
6170
  this.Limit = null;
5906
6171
 
5907
6172
  /**
5908
- * Mandatory. input tag.
6173
+ * <P>Specifies whether the tag is mandatory.</p>.
5909
6174
  * @type {boolean || null}
5910
6175
  */
5911
6176
  this.ForceCheckTag = null;
@@ -5965,6 +6230,104 @@ class ZoneResponse extends AbstractModel {
5965
6230
  }
5966
6231
  }
5967
6232
 
6233
+ /**
6234
+ * ModifyRoutineMaintenanceTask request structure.
6235
+ * @class
6236
+ */
6237
+ class ModifyRoutineMaintenanceTaskRequest extends AbstractModel {
6238
+ constructor(){
6239
+ super();
6240
+
6241
+ /**
6242
+ * Specifies the ckafka cluster instance id. can be obtained through the [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1) api.
6243
+ * @type {string || null}
6244
+ */
6245
+ this.InstanceId = null;
6246
+
6247
+ /**
6248
+ * Automated operation and maintenance category. valid values: QUOTA, ANALYSIS, RE_BALANCE, ELASTIC_BANDWIDTH.
6249
+ * @type {string || null}
6250
+ */
6251
+ this.MaintenanceType = null;
6252
+
6253
+ /**
6254
+ * INSTANCE_STORAGE_CAPACITY (automatic disk scale-out)/MESSAGE_RETENTION_PERIOD (dynamic MESSAGE RETENTION policy).
6255
+ * @type {string || null}
6256
+ */
6257
+ this.MaintenanceSubtype = null;
6258
+
6259
+ /**
6260
+ * Topic name
6261
+ * @type {string || null}
6262
+ */
6263
+ this.TopicName = null;
6264
+
6265
+ /**
6266
+ * Task trigger threshold.
6267
+ * @type {number || null}
6268
+ */
6269
+ this.ConfigureThreshold = null;
6270
+
6271
+ /**
6272
+ * Specifies the step length for task adjustment.
6273
+ * @type {number || null}
6274
+ */
6275
+ this.ConfigureStepSize = null;
6276
+
6277
+ /**
6278
+ * Task adjustment upper limit.
6279
+ * @type {number || null}
6280
+ */
6281
+ this.ConfigureLimit = null;
6282
+
6283
+ /**
6284
+ * Specifies the expected trigger time of the task, storing the offset in seconds from 0 AM of the current day.
6285
+ * @type {number || null}
6286
+ */
6287
+ this.PlannedTime = null;
6288
+
6289
+ /**
6290
+ * Additional task information.
6291
+ * @type {string || null}
6292
+ */
6293
+ this.ExtraConfig = null;
6294
+
6295
+ /**
6296
+ * Task status. 0: enabled, 1: disabled.
6297
+ * @type {number || null}
6298
+ */
6299
+ this.Status = null;
6300
+
6301
+ /**
6302
+ * Specifies the day of the week.
6303
+ * @type {string || null}
6304
+ */
6305
+ this.Week = null;
6306
+
6307
+ }
6308
+
6309
+ /**
6310
+ * @private
6311
+ */
6312
+ deserialize(params) {
6313
+ if (!params) {
6314
+ return;
6315
+ }
6316
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
6317
+ this.MaintenanceType = 'MaintenanceType' in params ? params.MaintenanceType : null;
6318
+ this.MaintenanceSubtype = 'MaintenanceSubtype' in params ? params.MaintenanceSubtype : null;
6319
+ this.TopicName = 'TopicName' in params ? params.TopicName : null;
6320
+ this.ConfigureThreshold = 'ConfigureThreshold' in params ? params.ConfigureThreshold : null;
6321
+ this.ConfigureStepSize = 'ConfigureStepSize' in params ? params.ConfigureStepSize : null;
6322
+ this.ConfigureLimit = 'ConfigureLimit' in params ? params.ConfigureLimit : null;
6323
+ this.PlannedTime = 'PlannedTime' in params ? params.PlannedTime : null;
6324
+ this.ExtraConfig = 'ExtraConfig' in params ? params.ExtraConfig : null;
6325
+ this.Status = 'Status' in params ? params.Status : null;
6326
+ this.Week = 'Week' in params ? params.Week : null;
6327
+
6328
+ }
6329
+ }
6330
+
5968
6331
  /**
5969
6332
  * Instance object
5970
6333
  * @class
@@ -6492,42 +6855,24 @@ class DescribeRegionResponse extends AbstractModel {
6492
6855
  }
6493
6856
 
6494
6857
  /**
6495
- * DescribeConsumerGroup request structure.
6858
+ * CreateTopic response structure.
6496
6859
  * @class
6497
6860
  */
6498
- class DescribeConsumerGroupRequest extends AbstractModel {
6861
+ class CreateTopicResponse extends AbstractModel {
6499
6862
  constructor(){
6500
6863
  super();
6501
6864
 
6502
6865
  /**
6503
- * ckafka cluster instance Id. obtain through the API [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1).
6504
- * @type {string || null}
6505
- */
6506
- this.InstanceId = null;
6507
-
6508
- /**
6509
- * Specifies the group name you want to query.
6510
- * @type {string || null}
6866
+ * Returned creation result
6867
+ * @type {CreateTopicResp || null}
6511
6868
  */
6512
- this.GroupName = null;
6869
+ this.Result = null;
6513
6870
 
6514
6871
  /**
6515
- * Specifies the corresponding topic name in the group to be queried by the user. if this parameter is specified while the group is unspecified, ignore this parameter.
6872
+ * 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.
6516
6873
  * @type {string || null}
6517
6874
  */
6518
- this.TopicName = null;
6519
-
6520
- /**
6521
- * Returns the limit quantity of the consumption group. supports a maximum of 50.
6522
- * @type {number || null}
6523
- */
6524
- this.Limit = null;
6525
-
6526
- /**
6527
- * Specifies the starting offset amount of the consumer group list.
6528
- * @type {number || null}
6529
- */
6530
- this.Offset = null;
6875
+ this.RequestId = null;
6531
6876
 
6532
6877
  }
6533
6878
 
@@ -6538,11 +6883,13 @@ class DescribeConsumerGroupRequest extends AbstractModel {
6538
6883
  if (!params) {
6539
6884
  return;
6540
6885
  }
6541
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
6542
- this.GroupName = 'GroupName' in params ? params.GroupName : null;
6543
- this.TopicName = 'TopicName' in params ? params.TopicName : null;
6544
- this.Limit = 'Limit' in params ? params.Limit : null;
6545
- this.Offset = 'Offset' in params ? params.Offset : null;
6886
+
6887
+ if (params.Result) {
6888
+ let obj = new CreateTopicResp();
6889
+ obj.deserialize(params.Result)
6890
+ this.Result = obj;
6891
+ }
6892
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6546
6893
 
6547
6894
  }
6548
6895
  }
@@ -6784,6 +7131,86 @@ class CreateAclRuleResponse extends AbstractModel {
6784
7131
  }
6785
7132
  }
6786
7133
 
7134
+ /**
7135
+ * DescribeTopicAttributes response structure.
7136
+ * @class
7137
+ */
7138
+ class DescribeTopicAttributesResponse extends AbstractModel {
7139
+ constructor(){
7140
+ super();
7141
+
7142
+ /**
7143
+ * Returned result object
7144
+ * @type {TopicAttributesResponse || null}
7145
+ */
7146
+ this.Result = null;
7147
+
7148
+ /**
7149
+ * 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.
7150
+ * @type {string || null}
7151
+ */
7152
+ this.RequestId = null;
7153
+
7154
+ }
7155
+
7156
+ /**
7157
+ * @private
7158
+ */
7159
+ deserialize(params) {
7160
+ if (!params) {
7161
+ return;
7162
+ }
7163
+
7164
+ if (params.Result) {
7165
+ let obj = new TopicAttributesResponse();
7166
+ obj.deserialize(params.Result)
7167
+ this.Result = obj;
7168
+ }
7169
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7170
+
7171
+ }
7172
+ }
7173
+
7174
+ /**
7175
+ * UpgradeBrokerVersion response structure.
7176
+ * @class
7177
+ */
7178
+ class UpgradeBrokerVersionResponse extends AbstractModel {
7179
+ constructor(){
7180
+ super();
7181
+
7182
+ /**
7183
+ * Upgrade result.
7184
+ * @type {JgwOperateResponse || null}
7185
+ */
7186
+ this.Result = null;
7187
+
7188
+ /**
7189
+ * 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.
7190
+ * @type {string || null}
7191
+ */
7192
+ this.RequestId = null;
7193
+
7194
+ }
7195
+
7196
+ /**
7197
+ * @private
7198
+ */
7199
+ deserialize(params) {
7200
+ if (!params) {
7201
+ return;
7202
+ }
7203
+
7204
+ if (params.Result) {
7205
+ let obj = new JgwOperateResponse();
7206
+ obj.deserialize(params.Result)
7207
+ this.Result = obj;
7208
+ }
7209
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7210
+
7211
+ }
7212
+ }
7213
+
6787
7214
  /**
6788
7215
  * Data structure returned by the pay-as-you-go instance creation API
6789
7216
  * @class
@@ -7294,6 +7721,18 @@ Specifies the serverless version.
7294
7721
  */
7295
7722
  this.DynamicDiskConfig = null;
7296
7723
 
7724
+ /**
7725
+ * Specifies the system maintenance time.
7726
+ * @type {string || null}
7727
+ */
7728
+ this.SystemMaintenanceTime = null;
7729
+
7730
+ /**
7731
+ * Specifies the maximum size of messages at the instance level.
7732
+ * @type {number || null}
7733
+ */
7734
+ this.MaxMessageByte = null;
7735
+
7297
7736
  /**
7298
7737
  * Specifies the instance billing type. POSTPAID_BY_HOUR: hourly billing; PREPAID: annual/monthly package.
7299
7738
  * @type {string || null}
@@ -7438,6 +7877,8 @@ CLOUD_EKS_TSE eks cluster.
7438
7877
  obj.deserialize(params.DynamicDiskConfig)
7439
7878
  this.DynamicDiskConfig = obj;
7440
7879
  }
7880
+ this.SystemMaintenanceTime = 'SystemMaintenanceTime' in params ? params.SystemMaintenanceTime : null;
7881
+ this.MaxMessageByte = 'MaxMessageByte' in params ? params.MaxMessageByte : null;
7441
7882
  this.InstanceChargeType = 'InstanceChargeType' in params ? params.InstanceChargeType : null;
7442
7883
  this.ElasticBandwidthSwitch = 'ElasticBandwidthSwitch' in params ? params.ElasticBandwidthSwitch : null;
7443
7884
  this.ElasticBandwidthOpenStatus = 'ElasticBandwidthOpenStatus' in params ? params.ElasticBandwidthOpenStatus : null;
@@ -7573,46 +8014,11 @@ class Filter extends AbstractModel {
7573
8014
  */
7574
8015
  this.Name = null;
7575
8016
 
7576
- /**
7577
- * Filter value of field.
7578
- * @type {Array.<string> || null}
7579
- */
7580
- this.Values = null;
7581
-
7582
- }
7583
-
7584
- /**
7585
- * @private
7586
- */
7587
- deserialize(params) {
7588
- if (!params) {
7589
- return;
7590
- }
7591
- this.Name = 'Name' in params ? params.Name : null;
7592
- this.Values = 'Values' in params ? params.Values : null;
7593
-
7594
- }
7595
- }
7596
-
7597
- /**
7598
- * Returned result of consumer group offset
7599
- * @class
7600
- */
7601
- class GroupOffsetResponse extends AbstractModel {
7602
- constructor(){
7603
- super();
7604
-
7605
- /**
7606
- * Total number of eligible results
7607
- * @type {number || null}
7608
- */
7609
- this.TotalCount = null;
7610
-
7611
- /**
7612
- * The topic partition array, where each element is a json object.
7613
- * @type {Array.<GroupOffsetTopic> || null}
8017
+ /**
8018
+ * Filter value of field.
8019
+ * @type {Array.<string> || null}
7614
8020
  */
7615
- this.TopicList = null;
8021
+ this.Values = null;
7616
8022
 
7617
8023
  }
7618
8024
 
@@ -7623,16 +8029,8 @@ class GroupOffsetResponse extends AbstractModel {
7623
8029
  if (!params) {
7624
8030
  return;
7625
8031
  }
7626
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
7627
-
7628
- if (params.TopicList) {
7629
- this.TopicList = new Array();
7630
- for (let z in params.TopicList) {
7631
- let obj = new GroupOffsetTopic();
7632
- obj.deserialize(params.TopicList[z]);
7633
- this.TopicList.push(obj);
7634
- }
7635
- }
8032
+ this.Name = 'Name' in params ? params.Name : null;
8033
+ this.Values = 'Values' in params ? params.Values : null;
7636
8034
 
7637
8035
  }
7638
8036
  }
@@ -8221,6 +8619,46 @@ class Region extends AbstractModel {
8221
8619
  }
8222
8620
  }
8223
8621
 
8622
+ /**
8623
+ * InstanceScalingDown response structure.
8624
+ * @class
8625
+ */
8626
+ class InstanceScalingDownResponse extends AbstractModel {
8627
+ constructor(){
8628
+ super();
8629
+
8630
+ /**
8631
+ * Returned results.
8632
+ * @type {ScalingDownResp || null}
8633
+ */
8634
+ this.Result = null;
8635
+
8636
+ /**
8637
+ * 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.
8638
+ * @type {string || null}
8639
+ */
8640
+ this.RequestId = null;
8641
+
8642
+ }
8643
+
8644
+ /**
8645
+ * @private
8646
+ */
8647
+ deserialize(params) {
8648
+ if (!params) {
8649
+ return;
8650
+ }
8651
+
8652
+ if (params.Result) {
8653
+ let obj = new ScalingDownResp();
8654
+ obj.deserialize(params.Result)
8655
+ this.Result = obj;
8656
+ }
8657
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
8658
+
8659
+ }
8660
+ }
8661
+
8224
8662
  /**
8225
8663
  * CreateConsumer request structure.
8226
8664
  * @class
@@ -8496,6 +8934,34 @@ class TopicInSyncReplicaResult extends AbstractModel {
8496
8934
  }
8497
8935
  }
8498
8936
 
8937
+ /**
8938
+ * Instance downsizing response.
8939
+ * @class
8940
+ */
8941
+ class ScalingDownResp extends AbstractModel {
8942
+ constructor(){
8943
+ super();
8944
+
8945
+ /**
8946
+ * Order ID list
8947
+ * @type {Array.<string> || null}
8948
+ */
8949
+ this.DealNames = null;
8950
+
8951
+ }
8952
+
8953
+ /**
8954
+ * @private
8955
+ */
8956
+ deserialize(params) {
8957
+ if (!params) {
8958
+ return;
8959
+ }
8960
+ this.DealNames = 'DealNames' in params ? params.DealNames : null;
8961
+
8962
+ }
8963
+ }
8964
+
8499
8965
  /**
8500
8966
  * SendMessage response structure.
8501
8967
  * @class
@@ -9295,24 +9761,48 @@ class ModifyDatahubTopicResponse extends AbstractModel {
9295
9761
  }
9296
9762
 
9297
9763
  /**
9298
- * Message content that can be sent in batches
9764
+ * DescribeDatahubTopics request structure.
9299
9765
  * @class
9300
9766
  */
9301
- class BatchContent extends AbstractModel {
9767
+ class DescribeDatahubTopicsRequest extends AbstractModel {
9302
9768
  constructor(){
9303
9769
  super();
9304
9770
 
9305
9771
  /**
9306
- * Message body that is sent.
9772
+ * Search term.
9307
9773
  * @type {string || null}
9308
9774
  */
9309
- this.Body = null;
9775
+ this.SearchWord = null;
9310
9776
 
9311
9777
  /**
9312
- * Message sending key name.
9778
+ * Query offset, which defaults to `0`.
9779
+ * @type {number || null}
9780
+ */
9781
+ this.Offset = null;
9782
+
9783
+ /**
9784
+ * Maximum number of results to be returned in this request. Default value: `50`. Maximum value: `50`.
9785
+ * @type {number || null}
9786
+ */
9787
+ this.Limit = null;
9788
+
9789
+ /**
9790
+ * Specifies whether to query the topic list from the connection.
9791
+ * @type {boolean || null}
9792
+ */
9793
+ this.QueryFromConnectResource = null;
9794
+
9795
+ /**
9796
+ * Connection ID.
9313
9797
  * @type {string || null}
9314
9798
  */
9315
- this.Key = null;
9799
+ this.ConnectResourceId = null;
9800
+
9801
+ /**
9802
+ * topic resource expression.
9803
+ * @type {string || null}
9804
+ */
9805
+ this.TopicRegularExpression = null;
9316
9806
 
9317
9807
  }
9318
9808
 
@@ -9323,8 +9813,12 @@ class BatchContent extends AbstractModel {
9323
9813
  if (!params) {
9324
9814
  return;
9325
9815
  }
9326
- this.Body = 'Body' in params ? params.Body : null;
9327
- this.Key = 'Key' in params ? params.Key : null;
9816
+ this.SearchWord = 'SearchWord' in params ? params.SearchWord : null;
9817
+ this.Offset = 'Offset' in params ? params.Offset : null;
9818
+ this.Limit = 'Limit' in params ? params.Limit : null;
9819
+ this.QueryFromConnectResource = 'QueryFromConnectResource' in params ? params.QueryFromConnectResource : null;
9820
+ this.ConnectResourceId = 'ConnectResourceId' in params ? params.ConnectResourceId : null;
9821
+ this.TopicRegularExpression = 'TopicRegularExpression' in params ? params.TopicRegularExpression : null;
9328
9822
 
9329
9823
  }
9330
9824
  }
@@ -9506,24 +10000,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
9506
10000
  }
9507
10001
 
9508
10002
  /**
9509
- * `TopicResponse` returned uniformly
10003
+ * ModifyRoutineMaintenanceTask response structure.
9510
10004
  * @class
9511
10005
  */
9512
- class TopicResult extends AbstractModel {
10006
+ class ModifyRoutineMaintenanceTaskResponse extends AbstractModel {
9513
10007
  constructor(){
9514
10008
  super();
9515
10009
 
9516
10010
  /**
9517
- * List of returned topic information.
9518
- * @type {Array.<Topic> || null}
10011
+ * Returned results.
10012
+ * @type {JgwOperateResponse || null}
9519
10013
  */
9520
- this.TopicList = null;
10014
+ this.Result = null;
9521
10015
 
9522
10016
  /**
9523
- * Number of eligible topics.
9524
- * @type {number || null}
10017
+ * 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.
10018
+ * @type {string || null}
9525
10019
  */
9526
- this.TotalCount = null;
10020
+ this.RequestId = null;
9527
10021
 
9528
10022
  }
9529
10023
 
@@ -9535,15 +10029,12 @@ class TopicResult extends AbstractModel {
9535
10029
  return;
9536
10030
  }
9537
10031
 
9538
- if (params.TopicList) {
9539
- this.TopicList = new Array();
9540
- for (let z in params.TopicList) {
9541
- let obj = new Topic();
9542
- obj.deserialize(params.TopicList[z]);
9543
- this.TopicList.push(obj);
9544
- }
10032
+ if (params.Result) {
10033
+ let obj = new JgwOperateResponse();
10034
+ obj.deserialize(params.Result)
10035
+ this.Result = obj;
9545
10036
  }
9546
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
10037
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
9547
10038
 
9548
10039
  }
9549
10040
  }
@@ -9909,6 +10400,46 @@ class BatchModifyTopicAttributesRequest extends AbstractModel {
9909
10400
  }
9910
10401
  }
9911
10402
 
10403
+ /**
10404
+ * DeleteGroup response structure.
10405
+ * @class
10406
+ */
10407
+ class DeleteGroupResponse extends AbstractModel {
10408
+ constructor(){
10409
+ super();
10410
+
10411
+ /**
10412
+ * Returned results.
10413
+ * @type {JgwOperateResponse || null}
10414
+ */
10415
+ this.Result = null;
10416
+
10417
+ /**
10418
+ * 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.
10419
+ * @type {string || null}
10420
+ */
10421
+ this.RequestId = null;
10422
+
10423
+ }
10424
+
10425
+ /**
10426
+ * @private
10427
+ */
10428
+ deserialize(params) {
10429
+ if (!params) {
10430
+ return;
10431
+ }
10432
+
10433
+ if (params.Result) {
10434
+ let obj = new JgwOperateResponse();
10435
+ obj.deserialize(params.Result)
10436
+ this.Result = obj;
10437
+ }
10438
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
10439
+
10440
+ }
10441
+ }
10442
+
9912
10443
  /**
9913
10444
  * CreateTopicIpWhiteList request structure.
9914
10445
  * @class
@@ -10443,6 +10974,12 @@ class ModifyTopicAttributesRequest extends AbstractModel {
10443
10974
  */
10444
10975
  this.ReplicaNum = null;
10445
10976
 
10977
+ /**
10978
+ * Specifies the time type for message saving: CreateTime/LogAppendTime.
10979
+ * @type {string || null}
10980
+ */
10981
+ this.LogMsgTimestampType = null;
10982
+
10446
10983
  }
10447
10984
 
10448
10985
  /**
@@ -10478,46 +11015,7 @@ class ModifyTopicAttributesRequest extends AbstractModel {
10478
11015
  this.QuotaProducerByteRate = 'QuotaProducerByteRate' in params ? params.QuotaProducerByteRate : null;
10479
11016
  this.QuotaConsumerByteRate = 'QuotaConsumerByteRate' in params ? params.QuotaConsumerByteRate : null;
10480
11017
  this.ReplicaNum = 'ReplicaNum' in params ? params.ReplicaNum : null;
10481
-
10482
- }
10483
- }
10484
-
10485
- /**
10486
- * CreateTopic response structure.
10487
- * @class
10488
- */
10489
- class CreateTopicResponse extends AbstractModel {
10490
- constructor(){
10491
- super();
10492
-
10493
- /**
10494
- * Returned creation result
10495
- * @type {CreateTopicResp || null}
10496
- */
10497
- this.Result = null;
10498
-
10499
- /**
10500
- * 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.
10501
- * @type {string || null}
10502
- */
10503
- this.RequestId = null;
10504
-
10505
- }
10506
-
10507
- /**
10508
- * @private
10509
- */
10510
- deserialize(params) {
10511
- if (!params) {
10512
- return;
10513
- }
10514
-
10515
- if (params.Result) {
10516
- let obj = new CreateTopicResp();
10517
- obj.deserialize(params.Result)
10518
- this.Result = obj;
10519
- }
10520
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
11018
+ this.LogMsgTimestampType = 'LogMsgTimestampType' in params ? params.LogMsgTimestampType : null;
10521
11019
 
10522
11020
  }
10523
11021
  }
@@ -11571,10 +12069,10 @@ class Price extends AbstractModel {
11571
12069
  }
11572
12070
 
11573
12071
  /**
11574
- * Instance route.
12072
+ * DescribeCkafkaVersion request structure.
11575
12073
  * @class
11576
12074
  */
11577
- class InstanceRoute extends AbstractModel {
12075
+ class DescribeCkafkaVersionRequest extends AbstractModel {
11578
12076
  constructor(){
11579
12077
  super();
11580
12078
 
@@ -11584,12 +12082,6 @@ class InstanceRoute extends AbstractModel {
11584
12082
  */
11585
12083
  this.InstanceId = null;
11586
12084
 
11587
- /**
11588
- * Route ID
11589
- * @type {number || null}
11590
- */
11591
- this.RouteId = null;
11592
-
11593
12085
  }
11594
12086
 
11595
12087
  /**
@@ -11600,12 +12092,12 @@ class InstanceRoute extends AbstractModel {
11600
12092
  return;
11601
12093
  }
11602
12094
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
11603
- this.RouteId = 'RouteId' in params ? params.RouteId : null;
11604
12095
 
11605
12096
  }
11606
12097
  }
11607
12098
 
11608
12099
  module.exports = {
12100
+ DescribeCkafkaVersionResponse: DescribeCkafkaVersionResponse,
11609
12101
  TopicDetail: TopicDetail,
11610
12102
  DeleteAclRequest: DeleteAclRequest,
11611
12103
  GroupInfoMember: GroupInfoMember,
@@ -11633,8 +12125,10 @@ module.exports = {
11633
12125
  BatchModifyTopicAttributesResponse: BatchModifyTopicAttributesResponse,
11634
12126
  CreateInstancePreResp: CreateInstancePreResp,
11635
12127
  GroupInfoTopics: GroupInfoTopics,
12128
+ InstanceScalingDownRequest: InstanceScalingDownRequest,
11636
12129
  FetchMessageListByOffsetRequest: FetchMessageListByOffsetRequest,
11637
12130
  DescribeSecurityGroupRoutesResponse: DescribeSecurityGroupRoutesResponse,
12131
+ UpgradeBrokerVersionRequest: UpgradeBrokerVersionRequest,
11638
12132
  ModifyInstancePreRequest: ModifyInstancePreRequest,
11639
12133
  CreateAclRuleRequest: CreateAclRuleRequest,
11640
12134
  RouteFilter: RouteFilter,
@@ -11642,6 +12136,7 @@ module.exports = {
11642
12136
  CreateInstancePreData: CreateInstancePreData,
11643
12137
  AclRule: AclRule,
11644
12138
  DescribeAclRuleRequest: DescribeAclRuleRequest,
12139
+ InstanceRoute: InstanceRoute,
11645
12140
  DescribeACLResponse: DescribeACLResponse,
11646
12141
  DynamicDiskConfig: DynamicDiskConfig,
11647
12142
  JgwOperateResponse: JgwOperateResponse,
@@ -11662,12 +12157,13 @@ module.exports = {
11662
12157
  InstanceChargeParam: InstanceChargeParam,
11663
12158
  CreateInstancePostResp: CreateInstancePostResp,
11664
12159
  DescribeDatahubTopicResponse: DescribeDatahubTopicResponse,
11665
- DescribeTopicAttributesResponse: DescribeTopicAttributesResponse,
12160
+ DescribeConsumerGroupRequest: DescribeConsumerGroupRequest,
11666
12161
  DescribeCvmInfoRequest: DescribeCvmInfoRequest,
11667
12162
  CreateConsumerResponse: CreateConsumerResponse,
11668
12163
  CreatePostPaidInstanceRequest: CreatePostPaidInstanceRequest,
11669
12164
  RouteResponse: RouteResponse,
11670
12165
  DescribeGroupResponse: DescribeGroupResponse,
12166
+ DeleteAclRuleRequest: DeleteAclRuleRequest,
11671
12167
  ModifyInstanceAttributesConfig: ModifyInstanceAttributesConfig,
11672
12168
  DescribeTaskStatusResponse: DescribeTaskStatusResponse,
11673
12169
  OperateResponseData: OperateResponseData,
@@ -11677,12 +12173,13 @@ module.exports = {
11677
12173
  TopicAttributesResponse: TopicAttributesResponse,
11678
12174
  TopicSubscribeGroup: TopicSubscribeGroup,
11679
12175
  ClusterInfo: ClusterInfo,
12176
+ DeleteGroupRequest: DeleteGroupRequest,
11680
12177
  DeleteInstancePostRequest: DeleteInstancePostRequest,
11681
12178
  DeleteUserResponse: DeleteUserResponse,
11682
12179
  DescribeTopicProduceConnectionRequest: DescribeTopicProduceConnectionRequest,
11683
12180
  CreateAclRequest: CreateAclRequest,
11684
12181
  DescribeTopicSyncReplicaResponse: DescribeTopicSyncReplicaResponse,
11685
- DescribeAppInfoRequest: DescribeAppInfoRequest,
12182
+ TopicResult: TopicResult,
11686
12183
  DeleteRouteResponse: DeleteRouteResponse,
11687
12184
  Partitions: Partitions,
11688
12185
  DescribeTopicResponse: DescribeTopicResponse,
@@ -11704,22 +12201,23 @@ module.exports = {
11704
12201
  TopicInSyncReplicaInfo: TopicInSyncReplicaInfo,
11705
12202
  DescribeRegionRequest: DescribeRegionRequest,
11706
12203
  InstanceConfigDO: InstanceConfigDO,
12204
+ DeleteAclRuleResponse: DeleteAclRuleResponse,
11707
12205
  UserResponse: UserResponse,
11708
12206
  DescribeCvmInfoResponse: DescribeCvmInfoResponse,
11709
12207
  DescribeGroupInfoResponse: DescribeGroupInfoResponse,
11710
12208
  ModifyTopicAttributesResponse: ModifyTopicAttributesResponse,
11711
- DescribeDatahubTopicsRequest: DescribeDatahubTopicsRequest,
12209
+ BatchContent: BatchContent,
11712
12210
  DeleteRouteTriggerTimeResponse: DeleteRouteTriggerTimeResponse,
11713
12211
  DescribeUserResponse: DescribeUserResponse,
11714
- AppIdResponse: AppIdResponse,
11715
12212
  DescribeTopicRequest: DescribeTopicRequest,
11716
12213
  DealInstanceDTO: DealInstanceDTO,
11717
12214
  CreatePartitionRequest: CreatePartitionRequest,
11718
12215
  Group: Group,
11719
12216
  GroupInfoResponse: GroupInfoResponse,
11720
- DescribeAppInfoResponse: DescribeAppInfoResponse,
12217
+ GroupOffsetResponse: GroupOffsetResponse,
11721
12218
  AclResponse: AclResponse,
11722
12219
  ZoneResponse: ZoneResponse,
12220
+ ModifyRoutineMaintenanceTaskRequest: ModifyRoutineMaintenanceTaskRequest,
11723
12221
  Instance: Instance,
11724
12222
  DescribeInstanceAttributesResponse: DescribeInstanceAttributesResponse,
11725
12223
  ModifyPasswordResponse: ModifyPasswordResponse,
@@ -11730,13 +12228,15 @@ module.exports = {
11730
12228
  ModifyPasswordRequest: ModifyPasswordRequest,
11731
12229
  ModifyInstanceAttributesRequest: ModifyInstanceAttributesRequest,
11732
12230
  DescribeRegionResponse: DescribeRegionResponse,
11733
- DescribeConsumerGroupRequest: DescribeConsumerGroupRequest,
12231
+ CreateTopicResponse: CreateTopicResponse,
11734
12232
  VipEntity: VipEntity,
11735
12233
  DescribeTopicProduceConnectionResponse: DescribeTopicProduceConnectionResponse,
11736
12234
  ModifyInstanceAttributesResponse: ModifyInstanceAttributesResponse,
11737
12235
  ConsumerGroupTopic: ConsumerGroupTopic,
11738
12236
  User: User,
11739
12237
  CreateAclRuleResponse: CreateAclRuleResponse,
12238
+ DescribeTopicAttributesResponse: DescribeTopicAttributesResponse,
12239
+ UpgradeBrokerVersionResponse: UpgradeBrokerVersionResponse,
11740
12240
  CreateInstancePostData: CreateInstancePostData,
11741
12241
  DescribeGroupOffsetsRequest: DescribeGroupOffsetsRequest,
11742
12242
  DeleteRouteTriggerTimeRequest: DeleteRouteTriggerTimeRequest,
@@ -11746,7 +12246,6 @@ module.exports = {
11746
12246
  DescribeDatahubTopicsResponse: DescribeDatahubTopicsResponse,
11747
12247
  DescribeGroupRequest: DescribeGroupRequest,
11748
12248
  Filter: Filter,
11749
- GroupOffsetResponse: GroupOffsetResponse,
11750
12249
  BatchCreateAclResponse: BatchCreateAclResponse,
11751
12250
  DescribeSecurityGroupRoutesRequest: DescribeSecurityGroupRoutesRequest,
11752
12251
  ModifyInstancePreResponse: ModifyInstancePreResponse,
@@ -11758,6 +12257,7 @@ module.exports = {
11758
12257
  CvmAndIpInfo: CvmAndIpInfo,
11759
12258
  DescribeInstancesDetailRequest: DescribeInstancesDetailRequest,
11760
12259
  Region: Region,
12260
+ InstanceScalingDownResponse: InstanceScalingDownResponse,
11761
12261
  CreateConsumerRequest: CreateConsumerRequest,
11762
12262
  InquireCkafkaPriceResponse: InquireCkafkaPriceResponse,
11763
12263
  CreateDatahubTopicResponse: CreateDatahubTopicResponse,
@@ -11765,6 +12265,7 @@ module.exports = {
11765
12265
  RouteDTO: RouteDTO,
11766
12266
  InquiryDiskParam: InquiryDiskParam,
11767
12267
  TopicInSyncReplicaResult: TopicInSyncReplicaResult,
12268
+ ScalingDownResp: ScalingDownResp,
11768
12269
  SendMessageResponse: SendMessageResponse,
11769
12270
  InquiryBasePrice: InquiryBasePrice,
11770
12271
  DescribeCkafkaZoneResponse: DescribeCkafkaZoneResponse,
@@ -11781,16 +12282,17 @@ module.exports = {
11781
12282
  BatchModifyTopicInfo: BatchModifyTopicInfo,
11782
12283
  DescribeRouteResponse: DescribeRouteResponse,
11783
12284
  ModifyDatahubTopicResponse: ModifyDatahubTopicResponse,
11784
- BatchContent: BatchContent,
12285
+ DescribeDatahubTopicsRequest: DescribeDatahubTopicsRequest,
11785
12286
  DescribeTypeInstancesRequest: DescribeTypeInstancesRequest,
11786
12287
  InquiryPrice: InquiryPrice,
11787
- TopicResult: TopicResult,
12288
+ ModifyRoutineMaintenanceTaskResponse: ModifyRoutineMaintenanceTaskResponse,
11788
12289
  DescribeTopicDetailRequest: DescribeTopicDetailRequest,
11789
12290
  DescribeGroupOffsetsResponse: DescribeGroupOffsetsResponse,
11790
12291
  SendMessageRequest: SendMessageRequest,
11791
12292
  ConsumerRecord: ConsumerRecord,
11792
12293
  ModifyGroupOffsetsRequest: ModifyGroupOffsetsRequest,
11793
12294
  BatchModifyTopicAttributesRequest: BatchModifyTopicAttributesRequest,
12295
+ DeleteGroupResponse: DeleteGroupResponse,
11794
12296
  CreateTopicIpWhiteListRequest: CreateTopicIpWhiteListRequest,
11795
12297
  Route: Route,
11796
12298
  FetchMessageListByTimestampResponse: FetchMessageListByTimestampResponse,
@@ -11799,7 +12301,6 @@ module.exports = {
11799
12301
  TopicRetentionTimeConfigRsp: TopicRetentionTimeConfigRsp,
11800
12302
  ModifyDatahubTopicRequest: ModifyDatahubTopicRequest,
11801
12303
  ModifyTopicAttributesRequest: ModifyTopicAttributesRequest,
11802
- CreateTopicResponse: CreateTopicResponse,
11803
12304
  CreateInstancePreRequest: CreateInstancePreRequest,
11804
12305
  DeleteTopicIpWhiteListRequest: DeleteTopicIpWhiteListRequest,
11805
12306
  DeleteTopicResponse: DeleteTopicResponse,
@@ -11815,6 +12316,6 @@ module.exports = {
11815
12316
  AclRuleResp: AclRuleResp,
11816
12317
  SecurityGroupRouteResp: SecurityGroupRouteResp,
11817
12318
  Price: Price,
11818
- InstanceRoute: InstanceRoute,
12319
+ DescribeCkafkaVersionRequest: DescribeCkafkaVersionRequest,
11819
12320
 
11820
12321
  }