tencentcloud-sdk-nodejs-intl-en 3.0.657 → 3.0.658

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.657",
3
+ "version": "3.0.658",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -55,6 +55,7 @@ const Topic = models.Topic;
55
55
  const Tag = models.Tag;
56
56
  const BatchModifyGroupOffsetsResponse = models.BatchModifyGroupOffsetsResponse;
57
57
  const GroupResponse = models.GroupResponse;
58
+ const CreateDatahubTopicRequest = models.CreateDatahubTopicRequest;
58
59
  const InstanceChargeParam = models.InstanceChargeParam;
59
60
  const DescribeDatahubTopicResponse = models.DescribeDatahubTopicResponse;
60
61
  const DescribeTopicAttributesResponse = models.DescribeTopicAttributesResponse;
@@ -65,7 +66,7 @@ const DescribeGroupResponse = models.DescribeGroupResponse;
65
66
  const ModifyInstanceAttributesConfig = models.ModifyInstanceAttributesConfig;
66
67
  const OperateResponseData = models.OperateResponseData;
67
68
  const CreateUserResponse = models.CreateUserResponse;
68
- const ModifyInstanceAttributesResponse = models.ModifyInstanceAttributesResponse;
69
+ const DescribeRouteRequest = models.DescribeRouteRequest;
69
70
  const CreatePartitionResponse = models.CreatePartitionResponse;
70
71
  const TopicSubscribeGroup = models.TopicSubscribeGroup;
71
72
  const ClusterInfo = models.ClusterInfo;
@@ -89,6 +90,7 @@ const DeleteAclResponse = models.DeleteAclResponse;
89
90
  const DynamicRetentionTime = models.DynamicRetentionTime;
90
91
  const DescribeTopicSubscribeGroupRequest = models.DescribeTopicSubscribeGroupRequest;
91
92
  const DeleteInstancePreResponse = models.DeleteInstancePreResponse;
93
+ const DatahubTopicResp = models.DatahubTopicResp;
92
94
  const FetchMessageByOffsetRequest = models.FetchMessageByOffsetRequest;
93
95
  const InquiryPublicNetworkParam = models.InquiryPublicNetworkParam;
94
96
  const TopicInSyncReplicaInfo = models.TopicInSyncReplicaInfo;
@@ -122,6 +124,7 @@ const DescribeRegionResponse = models.DescribeRegionResponse;
122
124
  const DescribeConsumerGroupRequest = models.DescribeConsumerGroupRequest;
123
125
  const VipEntity = models.VipEntity;
124
126
  const DescribeTopicProduceConnectionResponse = models.DescribeTopicProduceConnectionResponse;
127
+ const ModifyInstanceAttributesResponse = models.ModifyInstanceAttributesResponse;
125
128
  const ConsumerGroupTopic = models.ConsumerGroupTopic;
126
129
  const User = models.User;
127
130
  const GroupOffsetPartition = models.GroupOffsetPartition;
@@ -143,7 +146,7 @@ const DeleteTopicIpWhiteListResponse = models.DeleteTopicIpWhiteListResponse;
143
146
  const DescribeInstancesDetailRequest = models.DescribeInstancesDetailRequest;
144
147
  const CreateConsumerRequest = models.CreateConsumerRequest;
145
148
  const InquireCkafkaPriceResponse = models.InquireCkafkaPriceResponse;
146
- const DescribeRouteRequest = models.DescribeRouteRequest;
149
+ const CreateDatahubTopicResponse = models.CreateDatahubTopicResponse;
147
150
  const InquiryDiskParam = models.InquiryDiskParam;
148
151
  const TopicInSyncReplicaResult = models.TopicInSyncReplicaResult;
149
152
  const SendMessageResponse = models.SendMessageResponse;
@@ -396,6 +399,17 @@ class CkafkaClient extends AbstractClient {
396
399
  this.request("FetchMessageListByOffset", req, resp, cb);
397
400
  }
398
401
 
402
+ /**
403
+ * This API is used to create a DataHub topic.
404
+ * @param {CreateDatahubTopicRequest} req
405
+ * @param {function(string, CreateDatahubTopicResponse):void} cb
406
+ * @public
407
+ */
408
+ CreateDatahubTopic(req, cb) {
409
+ let resp = new CreateDatahubTopicResponse();
410
+ this.request("CreateDatahubTopic", req, resp, cb);
411
+ }
412
+
399
413
  /**
400
414
  * This API is used to enumerate ACLs.
401
415
  * @param {DescribeACLRequest} req
@@ -2149,6 +2149,70 @@ Note: This field may return null, indicating that no valid values can be obtaine
2149
2149
  }
2150
2150
  }
2151
2151
 
2152
+ /**
2153
+ * CreateDatahubTopic request structure.
2154
+ * @class
2155
+ */
2156
+ class CreateDatahubTopicRequest extends AbstractModel {
2157
+ constructor(){
2158
+ super();
2159
+
2160
+ /**
2161
+ * Topic name, which is a string of up to 128 characters. It can contain letters, digits, and hyphens (-) and must start with a letter.
2162
+ * @type {string || null}
2163
+ */
2164
+ this.Name = null;
2165
+
2166
+ /**
2167
+ * Number of partitions, which should be greater than 0.
2168
+ * @type {number || null}
2169
+ */
2170
+ this.PartitionNum = null;
2171
+
2172
+ /**
2173
+ * Message retention period in milliseconds. The current minimum value is 60,000 ms.
2174
+ * @type {number || null}
2175
+ */
2176
+ this.RetentionMs = null;
2177
+
2178
+ /**
2179
+ * Topic remarks, which are a string of up to 128 characters. It can contain letters, digits, and hyphens (-) and must start with a letter.
2180
+ * @type {string || null}
2181
+ */
2182
+ this.Note = null;
2183
+
2184
+ /**
2185
+ * Tag list
2186
+ * @type {Array.<Tag> || null}
2187
+ */
2188
+ this.Tags = null;
2189
+
2190
+ }
2191
+
2192
+ /**
2193
+ * @private
2194
+ */
2195
+ deserialize(params) {
2196
+ if (!params) {
2197
+ return;
2198
+ }
2199
+ this.Name = 'Name' in params ? params.Name : null;
2200
+ this.PartitionNum = 'PartitionNum' in params ? params.PartitionNum : null;
2201
+ this.RetentionMs = 'RetentionMs' in params ? params.RetentionMs : null;
2202
+ this.Note = 'Note' in params ? params.Note : null;
2203
+
2204
+ if (params.Tags) {
2205
+ this.Tags = new Array();
2206
+ for (let z in params.Tags) {
2207
+ let obj = new Tag();
2208
+ obj.deserialize(params.Tags[z]);
2209
+ this.Tags.push(obj);
2210
+ }
2211
+ }
2212
+
2213
+ }
2214
+ }
2215
+
2152
2216
  /**
2153
2217
  * Instance billing parameters
2154
2218
  * @class
@@ -2536,24 +2600,18 @@ class CreateUserResponse extends AbstractModel {
2536
2600
  }
2537
2601
 
2538
2602
  /**
2539
- * ModifyInstanceAttributes response structure.
2603
+ * DescribeRoute request structure.
2540
2604
  * @class
2541
2605
  */
2542
- class ModifyInstanceAttributesResponse extends AbstractModel {
2606
+ class DescribeRouteRequest extends AbstractModel {
2543
2607
  constructor(){
2544
2608
  super();
2545
2609
 
2546
2610
  /**
2547
- * Returned result
2548
- * @type {JgwOperateResponse || null}
2549
- */
2550
- this.Result = null;
2551
-
2552
- /**
2553
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2611
+ * Unique instance ID
2554
2612
  * @type {string || null}
2555
2613
  */
2556
- this.RequestId = null;
2614
+ this.InstanceId = null;
2557
2615
 
2558
2616
  }
2559
2617
 
@@ -2564,13 +2622,7 @@ class ModifyInstanceAttributesResponse extends AbstractModel {
2564
2622
  if (!params) {
2565
2623
  return;
2566
2624
  }
2567
-
2568
- if (params.Result) {
2569
- let obj = new JgwOperateResponse();
2570
- obj.deserialize(params.Result)
2571
- this.Result = obj;
2572
- }
2573
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
2625
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
2574
2626
 
2575
2627
  }
2576
2628
  }
@@ -3791,6 +3843,34 @@ class DeleteInstancePreResponse extends AbstractModel {
3791
3843
  }
3792
3844
  }
3793
3845
 
3846
+ /**
3847
+ * DataHub topic response
3848
+ * @class
3849
+ */
3850
+ class DatahubTopicResp extends AbstractModel {
3851
+ constructor(){
3852
+ super();
3853
+
3854
+ /**
3855
+ * Topic name
3856
+ * @type {string || null}
3857
+ */
3858
+ this.TopicName = null;
3859
+
3860
+ }
3861
+
3862
+ /**
3863
+ * @private
3864
+ */
3865
+ deserialize(params) {
3866
+ if (!params) {
3867
+ return;
3868
+ }
3869
+ this.TopicName = 'TopicName' in params ? params.TopicName : null;
3870
+
3871
+ }
3872
+ }
3873
+
3794
3874
  /**
3795
3875
  * FetchMessageByOffset request structure.
3796
3876
  * @class
@@ -5422,6 +5502,46 @@ class DescribeTopicProduceConnectionResponse extends AbstractModel {
5422
5502
  }
5423
5503
  }
5424
5504
 
5505
+ /**
5506
+ * ModifyInstanceAttributes response structure.
5507
+ * @class
5508
+ */
5509
+ class ModifyInstanceAttributesResponse extends AbstractModel {
5510
+ constructor(){
5511
+ super();
5512
+
5513
+ /**
5514
+ * Returned result
5515
+ * @type {JgwOperateResponse || null}
5516
+ */
5517
+ this.Result = null;
5518
+
5519
+ /**
5520
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
5521
+ * @type {string || null}
5522
+ */
5523
+ this.RequestId = null;
5524
+
5525
+ }
5526
+
5527
+ /**
5528
+ * @private
5529
+ */
5530
+ deserialize(params) {
5531
+ if (!params) {
5532
+ return;
5533
+ }
5534
+
5535
+ if (params.Result) {
5536
+ let obj = new JgwOperateResponse();
5537
+ obj.deserialize(params.Result)
5538
+ this.Result = obj;
5539
+ }
5540
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5541
+
5542
+ }
5543
+ }
5544
+
5425
5545
  /**
5426
5546
  * Consumer group topic object
5427
5547
  * @class
@@ -6710,18 +6830,24 @@ class InquireCkafkaPriceResponse extends AbstractModel {
6710
6830
  }
6711
6831
 
6712
6832
  /**
6713
- * DescribeRoute request structure.
6833
+ * CreateDatahubTopic response structure.
6714
6834
  * @class
6715
6835
  */
6716
- class DescribeRouteRequest extends AbstractModel {
6836
+ class CreateDatahubTopicResponse extends AbstractModel {
6717
6837
  constructor(){
6718
6838
  super();
6719
6839
 
6720
6840
  /**
6721
- * Unique instance ID
6841
+ * Returned creation result
6842
+ * @type {DatahubTopicResp || null}
6843
+ */
6844
+ this.Result = null;
6845
+
6846
+ /**
6847
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
6722
6848
  * @type {string || null}
6723
6849
  */
6724
- this.InstanceId = null;
6850
+ this.RequestId = null;
6725
6851
 
6726
6852
  }
6727
6853
 
@@ -6732,7 +6858,13 @@ class DescribeRouteRequest extends AbstractModel {
6732
6858
  if (!params) {
6733
6859
  return;
6734
6860
  }
6735
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
6861
+
6862
+ if (params.Result) {
6863
+ let obj = new DatahubTopicResp();
6864
+ obj.deserialize(params.Result)
6865
+ this.Result = obj;
6866
+ }
6867
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6736
6868
 
6737
6869
  }
6738
6870
  }
@@ -9454,6 +9586,7 @@ module.exports = {
9454
9586
  Tag: Tag,
9455
9587
  BatchModifyGroupOffsetsResponse: BatchModifyGroupOffsetsResponse,
9456
9588
  GroupResponse: GroupResponse,
9589
+ CreateDatahubTopicRequest: CreateDatahubTopicRequest,
9457
9590
  InstanceChargeParam: InstanceChargeParam,
9458
9591
  DescribeDatahubTopicResponse: DescribeDatahubTopicResponse,
9459
9592
  DescribeTopicAttributesResponse: DescribeTopicAttributesResponse,
@@ -9464,7 +9597,7 @@ module.exports = {
9464
9597
  ModifyInstanceAttributesConfig: ModifyInstanceAttributesConfig,
9465
9598
  OperateResponseData: OperateResponseData,
9466
9599
  CreateUserResponse: CreateUserResponse,
9467
- ModifyInstanceAttributesResponse: ModifyInstanceAttributesResponse,
9600
+ DescribeRouteRequest: DescribeRouteRequest,
9468
9601
  CreatePartitionResponse: CreatePartitionResponse,
9469
9602
  TopicSubscribeGroup: TopicSubscribeGroup,
9470
9603
  ClusterInfo: ClusterInfo,
@@ -9488,6 +9621,7 @@ module.exports = {
9488
9621
  DynamicRetentionTime: DynamicRetentionTime,
9489
9622
  DescribeTopicSubscribeGroupRequest: DescribeTopicSubscribeGroupRequest,
9490
9623
  DeleteInstancePreResponse: DeleteInstancePreResponse,
9624
+ DatahubTopicResp: DatahubTopicResp,
9491
9625
  FetchMessageByOffsetRequest: FetchMessageByOffsetRequest,
9492
9626
  InquiryPublicNetworkParam: InquiryPublicNetworkParam,
9493
9627
  TopicInSyncReplicaInfo: TopicInSyncReplicaInfo,
@@ -9521,6 +9655,7 @@ module.exports = {
9521
9655
  DescribeConsumerGroupRequest: DescribeConsumerGroupRequest,
9522
9656
  VipEntity: VipEntity,
9523
9657
  DescribeTopicProduceConnectionResponse: DescribeTopicProduceConnectionResponse,
9658
+ ModifyInstanceAttributesResponse: ModifyInstanceAttributesResponse,
9524
9659
  ConsumerGroupTopic: ConsumerGroupTopic,
9525
9660
  User: User,
9526
9661
  GroupOffsetPartition: GroupOffsetPartition,
@@ -9542,7 +9677,7 @@ module.exports = {
9542
9677
  DescribeInstancesDetailRequest: DescribeInstancesDetailRequest,
9543
9678
  CreateConsumerRequest: CreateConsumerRequest,
9544
9679
  InquireCkafkaPriceResponse: InquireCkafkaPriceResponse,
9545
- DescribeRouteRequest: DescribeRouteRequest,
9680
+ CreateDatahubTopicResponse: CreateDatahubTopicResponse,
9546
9681
  InquiryDiskParam: InquiryDiskParam,
9547
9682
  TopicInSyncReplicaResult: TopicInSyncReplicaResult,
9548
9683
  SendMessageResponse: SendMessageResponse,
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.657";
1
+ const sdkVersion = "3.0.658";
2
2
  module.exports = sdkVersion
@@ -2316,7 +2316,7 @@ class DescribeResourcesByDealNameResponse extends AbstractModel {
2316
2316
  }
2317
2317
 
2318
2318
  /**
2319
- *
2319
+ * Instance network information
2320
2320
  * @class
2321
2321
  */
2322
2322
  class InstanceNetInfo extends AbstractModel {
@@ -2324,49 +2324,57 @@ class InstanceNetInfo extends AbstractModel {
2324
2324
  super();
2325
2325
 
2326
2326
  /**
2327
- *
2327
+ * Network type
2328
+ Note: This field may return null, indicating that no valid values can be obtained.
2328
2329
  * @type {string || null}
2329
2330
  */
2330
2331
  this.InstanceGroupType = null;
2331
2332
 
2332
2333
  /**
2333
- *
2334
+ * Instance group ID
2335
+ Note: This field may return null, indicating that no valid values can be obtained.
2334
2336
  * @type {string || null}
2335
2337
  */
2336
2338
  this.InstanceGroupId = null;
2337
2339
 
2338
2340
  /**
2339
- *
2341
+ * VPC ID
2342
+ Note: This field may return null, indicating that no valid values can be obtained.
2340
2343
  * @type {string || null}
2341
2344
  */
2342
2345
  this.VpcId = null;
2343
2346
 
2344
2347
  /**
2345
- *
2348
+ * Subnet ID
2349
+ Note: This field may return null, indicating that no valid values can be obtained.
2346
2350
  * @type {string || null}
2347
2351
  */
2348
2352
  this.SubnetId = null;
2349
2353
 
2350
2354
  /**
2351
- *
2355
+ * Network type
2356
+ Note: This field may return null, indicating that no valid values can be obtained.
2352
2357
  * @type {number || null}
2353
2358
  */
2354
2359
  this.NetType = null;
2355
2360
 
2356
2361
  /**
2357
- *
2362
+ * VPC IP
2363
+ Note: This field may return null, indicating that no valid values can be obtained.
2358
2364
  * @type {string || null}
2359
2365
  */
2360
2366
  this.Vip = null;
2361
2367
 
2362
2368
  /**
2363
- *
2369
+ * VPC port
2370
+ Note: This field may return null, indicating that no valid values can be obtained.
2364
2371
  * @type {number || null}
2365
2372
  */
2366
2373
  this.Vport = null;
2367
2374
 
2368
2375
  /**
2369
- *
2376
+ * Public network domain name
2377
+ Note: This field may return null, indicating that no valid values can be obtained.
2370
2378
  * @type {string || null}
2371
2379
  */
2372
2380
  this.WanDomain = null;
@@ -2378,13 +2386,15 @@ class InstanceNetInfo extends AbstractModel {
2378
2386
  this.WanIP = null;
2379
2387
 
2380
2388
  /**
2381
- *
2389
+ * Public network port
2390
+ Note: This field may return null, indicating that no valid values can be obtained.
2382
2391
  * @type {number || null}
2383
2392
  */
2384
2393
  this.WanPort = null;
2385
2394
 
2386
2395
  /**
2387
- *
2396
+ * Public network status
2397
+ Note: This field may return null, indicating that no valid values can be obtained.
2388
2398
  * @type {string || null}
2389
2399
  */
2390
2400
  this.WanStatus = null;
@@ -3865,7 +3875,8 @@ Note: This field may return null, indicating that no valid value can be obtained
3865
3875
  this.SlaveZones = null;
3866
3876
 
3867
3877
  /**
3868
- *
3878
+ * Instance network information
3879
+ Note: This field may return null, indicating that no valid value can be obtained.
3869
3880
  * @type {Array.<InstanceNetInfo> || null}
3870
3881
  */
3871
3882
  this.InstanceNetInfo = null;
@@ -8193,19 +8204,19 @@ class AddInstancesRequest extends AbstractModel {
8193
8204
  this.ReadOnlyCount = null;
8194
8205
 
8195
8206
  /**
8196
- * Instance group ID, which is used when you add an instance to an existing RO group. If this parameter is left empty, an RO group will be created. We recommend you not pass in this value on the current version.
8207
+ * Instance group ID, which will be used when you add an instance in an existing RO group. If this parameter is left empty, an RO group will be created. But it is not recommended to pass in this parameter for the current version, as this version has been disused.
8197
8208
  * @type {string || null}
8198
8209
  */
8199
8210
  this.InstanceGrpId = null;
8200
8211
 
8201
8212
  /**
8202
- * VPC ID. This parameter has been disused.
8213
+ * VPC ID
8203
8214
  * @type {string || null}
8204
8215
  */
8205
8216
  this.VpcId = null;
8206
8217
 
8207
8218
  /**
8208
- * Subnet ID. If `VpcId` is set, `SubnetId` is required. This parameter has been disused.
8219
+ * Subnet ID. If `VpcId` is set, `SubnetId` is required.
8209
8220
  * @type {string || null}
8210
8221
  */
8211
8222
  this.SubnetId = null;
@@ -8259,6 +8270,12 @@ class AddInstancesRequest extends AbstractModel {
8259
8270
  */
8260
8271
  this.InstanceParams = null;
8261
8272
 
8273
+ /**
8274
+ * Security group ID. You can specify an security group when creating a read-only instance.
8275
+ * @type {Array.<string> || null}
8276
+ */
8277
+ this.SecurityGroupIds = null;
8278
+
8262
8279
  }
8263
8280
 
8264
8281
  /**
@@ -8291,6 +8308,7 @@ class AddInstancesRequest extends AbstractModel {
8291
8308
  this.InstanceParams.push(obj);
8292
8309
  }
8293
8310
  }
8311
+ this.SecurityGroupIds = 'SecurityGroupIds' in params ? params.SecurityGroupIds : null;
8294
8312
 
8295
8313
  }
8296
8314
  }
@@ -2542,15 +2542,15 @@ Note: this field may return null, indicating that no valid values can be obtaine
2542
2542
  this.ApiAccessIpv6 = null;
2543
2543
 
2544
2544
  /**
2545
- * Cluster type
2546
- Note: this field may return `null`, indicating that no valid values can be obtained.
2545
+ * Cluster type. Valid values: `0` and `1` (shared cluster), `2` (dedicated cluster).
2546
+ Note: This field may return null, indicating that no valid values can be obtained.
2547
2547
  * @type {number || null}
2548
2548
  */
2549
2549
  this.ClusterType = null;
2550
2550
 
2551
2551
  /**
2552
- * Cluster status
2553
- Note: this field may return `null`, indicating that no valid values can be obtained.
2552
+ * Cluster status. Valid values: `0` (Running), `1` (Isolated. This status is caused by overdue payments), `2` (To be repossessed. This status is caused when the cluster is actively deleted.),·`3` (To be released. The resources occupied by the table can be released in this status.), `4` (Modifying).
2553
+ Note: This field may return null, indicating that no valid values can be obtained.
2554
2554
  * @type {number || null}
2555
2555
  */
2556
2556
  this.ClusterStatus = null;
@@ -2638,6 +2638,13 @@ Note: This field may return `null`, indicating that no valid values can be obtai
2638
2638
  */
2639
2639
  this.IsReadOnlyUlogBackupExpireDay = null;
2640
2640
 
2641
+ /**
2642
+ * restproxy Status
2643
+ Note: This field may return null, indicating that no valid values can be obtained.
2644
+ * @type {number || null}
2645
+ */
2646
+ this.RestProxyStatus = null;
2647
+
2641
2648
  }
2642
2649
 
2643
2650
  /**
@@ -2697,6 +2704,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
2697
2704
  this.TxhBackupExpireDay = 'TxhBackupExpireDay' in params ? params.TxhBackupExpireDay : null;
2698
2705
  this.UlogBackupExpireDay = 'UlogBackupExpireDay' in params ? params.UlogBackupExpireDay : null;
2699
2706
  this.IsReadOnlyUlogBackupExpireDay = 'IsReadOnlyUlogBackupExpireDay' in params ? params.IsReadOnlyUlogBackupExpireDay : null;
2707
+ this.RestProxyStatus = 'RestProxyStatus' in params ? params.RestProxyStatus : null;
2700
2708
 
2701
2709
  }
2702
2710
  }
@@ -4566,6 +4574,13 @@ class ServerDetailInfo extends AbstractModel {
4566
4574
  */
4567
4575
  this.WriteNum = null;
4568
4576
 
4577
+ /**
4578
+ * Version
4579
+ Note: This field may return null, indicating that no valid values can be obtained.
4580
+ * @type {string || null}
4581
+ */
4582
+ this.Version = null;
4583
+
4569
4584
  }
4570
4585
 
4571
4586
  /**
@@ -4581,6 +4596,7 @@ class ServerDetailInfo extends AbstractModel {
4581
4596
  this.DiskRate = 'DiskRate' in params ? params.DiskRate : null;
4582
4597
  this.ReadNum = 'ReadNum' in params ? params.ReadNum : null;
4583
4598
  this.WriteNum = 'WriteNum' in params ? params.WriteNum : null;
4599
+ this.Version = 'Version' in params ? params.Version : null;
4584
4600
 
4585
4601
  }
4586
4602
  }
@@ -7093,6 +7109,13 @@ class ProxyDetailInfo extends AbstractModel {
7093
7109
  */
7094
7110
  this.SlowProcessSpeed = null;
7095
7111
 
7112
+ /**
7113
+ * Version
7114
+ Note: This field may return null, indicating that no valid values can be obtained.
7115
+ * @type {string || null}
7116
+ */
7117
+ this.Version = null;
7118
+
7096
7119
  }
7097
7120
 
7098
7121
  /**
@@ -7107,6 +7130,7 @@ class ProxyDetailInfo extends AbstractModel {
7107
7130
  this.ProcessSpeed = 'ProcessSpeed' in params ? params.ProcessSpeed : null;
7108
7131
  this.AverageProcessDelay = 'AverageProcessDelay' in params ? params.AverageProcessDelay : null;
7109
7132
  this.SlowProcessSpeed = 'SlowProcessSpeed' in params ? params.SlowProcessSpeed : null;
7133
+ this.Version = 'Version' in params ? params.Version : null;
7110
7134
 
7111
7135
  }
7112
7136
  }
@@ -7573,6 +7597,33 @@ class TableGroupInfo extends AbstractModel {
7573
7597
  */
7574
7598
  this.TotalSize = null;
7575
7599
 
7600
+ /**
7601
+ * The number of days before the backup files of the Txh tables expire and are deleted.
7602
+ Note: This field may return null, indicating that no valid values can be obtained.
7603
+ * @type {number || null}
7604
+ */
7605
+ this.TxhBackupExpireDay = null;
7606
+
7607
+ /**
7608
+ * Whether MySQL load rebalancing is enabled. Valid values: `0` (Disabled), `1` (Enabling), `2` (Enabled).
7609
+ * @type {number || null}
7610
+ */
7611
+ this.EnableMysql = null;
7612
+
7613
+ /**
7614
+ * MySQL load rebalancing vip
7615
+ Note: This field may return null, indicating that no valid values can be obtained.
7616
+ * @type {string || null}
7617
+ */
7618
+ this.MysqlConnIp = null;
7619
+
7620
+ /**
7621
+ * MySQL load rebalancing vport
7622
+ Note: This field may return null, indicating that no valid values can be obtained.
7623
+ * @type {number || null}
7624
+ */
7625
+ this.MysqlConnPort = null;
7626
+
7576
7627
  }
7577
7628
 
7578
7629
  /**
@@ -7587,6 +7638,10 @@ class TableGroupInfo extends AbstractModel {
7587
7638
  this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
7588
7639
  this.TableCount = 'TableCount' in params ? params.TableCount : null;
7589
7640
  this.TotalSize = 'TotalSize' in params ? params.TotalSize : null;
7641
+ this.TxhBackupExpireDay = 'TxhBackupExpireDay' in params ? params.TxhBackupExpireDay : null;
7642
+ this.EnableMysql = 'EnableMysql' in params ? params.EnableMysql : null;
7643
+ this.MysqlConnIp = 'MysqlConnIp' in params ? params.MysqlConnIp : null;
7644
+ this.MysqlConnPort = 'MysqlConnPort' in params ? params.MysqlConnPort : null;
7590
7645
 
7591
7646
  }
7592
7647
  }