tencentcloud-sdk-nodejs-intl-en 3.0.1297 → 3.0.1298
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 +1 -1
- package/tencentcloud/ckafka/v20190819/ckafka_client.js +31 -2
- package/tencentcloud/ckafka/v20190819/models.js +541 -163
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/tke/v20180525/models.js +381 -85
- package/tencentcloud/tke/v20180525/tke_client.js +46 -6
|
@@ -24,6 +24,12 @@ class DescribeCkafkaVersionResponse extends AbstractModel {
|
|
|
24
24
|
constructor(){
|
|
25
25
|
super();
|
|
26
26
|
|
|
27
|
+
/**
|
|
28
|
+
* Instance version information.
|
|
29
|
+
* @type {InstanceVersion || null}
|
|
30
|
+
*/
|
|
31
|
+
this.Result = null;
|
|
32
|
+
|
|
27
33
|
/**
|
|
28
34
|
* 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
35
|
* @type {string || null}
|
|
@@ -39,6 +45,12 @@ class DescribeCkafkaVersionResponse extends AbstractModel {
|
|
|
39
45
|
if (!params) {
|
|
40
46
|
return;
|
|
41
47
|
}
|
|
48
|
+
|
|
49
|
+
if (params.Result) {
|
|
50
|
+
let obj = new InstanceVersion();
|
|
51
|
+
obj.deserialize(params.Result)
|
|
52
|
+
this.Result = obj;
|
|
53
|
+
}
|
|
42
54
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
43
55
|
|
|
44
56
|
}
|
|
@@ -3275,125 +3287,131 @@ class CreatePostPaidInstanceRequest extends AbstractModel {
|
|
|
3275
3287
|
super();
|
|
3276
3288
|
|
|
3277
3289
|
/**
|
|
3278
|
-
* VPC Id,
|
|
3290
|
+
* <p>VPC Id, can be obtained through the <a href="https://www.tencentcloud.comom/document/product/215/15778?from_cn_redirect=1">DescribeVpcs</a> api.</p>.
|
|
3279
3291
|
* @type {string || null}
|
|
3280
3292
|
*/
|
|
3281
3293
|
this.VpcId = null;
|
|
3282
3294
|
|
|
3283
3295
|
/**
|
|
3284
|
-
* Subnet Id
|
|
3296
|
+
* <p>Subnet Id, which can be obtained through the <a href="https://www.tencentcloud.comom/document/product/215/15784?from_cn_redirect=1">DescribeSubnets</a> api.</p>.
|
|
3285
3297
|
* @type {string || null}
|
|
3286
3298
|
*/
|
|
3287
3299
|
this.SubnetId = null;
|
|
3288
3300
|
|
|
3289
3301
|
/**
|
|
3290
|
-
* Specifies the cluster instance name of ckafka,
|
|
3302
|
+
* <P>Specifies the cluster instance name of ckafka, with a length not exceeding 128 arbitrary characters.</p>.
|
|
3291
3303
|
* @type {string || null}
|
|
3292
3304
|
*/
|
|
3293
3305
|
this.InstanceName = null;
|
|
3294
3306
|
|
|
3295
3307
|
/**
|
|
3296
|
-
* Specifies the standard edition instance specification for the international site. currently only the international site
|
|
3308
|
+
* <P>Specifies the standard edition instance specification for the international site. currently only the standard edition on the international site uses the current field to distinguish specifications, while the domestic site standard edition uses peak bandwidth. fill in 1 for all instances except the international site standard edition. for international site standard edition instances: [entry-level (general)] fill 1; [standard type (standard)] fill 2; [advanced] fill 3; [capacity type (capacity)] fill 4; [advanced type 1 (specialized-1)] fill 5; [advanced type 2 (specialized-2)] fill 6; [advanced type 3 (specialized-3)] fill 7; [advanced type 4 (specialized-4)] fill 8.</p>.
|
|
3297
3309
|
* @type {number || null}
|
|
3298
3310
|
*/
|
|
3299
3311
|
this.InstanceType = null;
|
|
3300
3312
|
|
|
3301
3313
|
/**
|
|
3302
|
-
* The maximum
|
|
3314
|
+
* <P>The default maximum retention time for instance logs, in minutes. default value: 1440 minutes (1 day) when this parameter is not input. maximum: 30 days. if the message retention time is explicitly set for a topic, the topic retention time takes precedence.</p>.
|
|
3303
3315
|
* @type {number || null}
|
|
3304
3316
|
*/
|
|
3305
3317
|
this.MsgRetentionTime = null;
|
|
3306
3318
|
|
|
3307
3319
|
/**
|
|
3308
|
-
*
|
|
3320
|
+
* <p>Specifies the cluster Id when creating an instance. input this parameter to indicate the cluster Id. leave it empty if no cluster is specified.</p>.
|
|
3309
3321
|
* @type {number || null}
|
|
3310
3322
|
*/
|
|
3311
3323
|
this.ClusterId = null;
|
|
3312
3324
|
|
|
3313
3325
|
/**
|
|
3314
|
-
* Instance version. currently supports "2.4.1", "2.4.2", "2.8.1", "3.2.3". default value "2.4.1". "2.4.1" and "2.4.2" belong to the same version
|
|
3326
|
+
* <P>Instance version. currently supports "2.4.1", "2.4.2", "2.8.1", "3.2.3". default value is "2.4.1". "2.4.1" and "2.4.2" belong to the same version, any one can be passed.</p>.
|
|
3315
3327
|
* @type {string || null}
|
|
3316
3328
|
*/
|
|
3317
3329
|
this.KafkaVersion = null;
|
|
3318
3330
|
|
|
3319
3331
|
/**
|
|
3320
|
-
* Instance type. "standard": standard version
|
|
3332
|
+
* <P>Instance type. "standard": standard version, "profession": professional version. (standard version is only supported on the international site. chinese site currently supports professional version)</p>.
|
|
3321
3333
|
* @type {string || null}
|
|
3322
3334
|
*/
|
|
3323
3335
|
this.SpecificationsType = null;
|
|
3324
3336
|
|
|
3325
3337
|
/**
|
|
3326
|
-
* Specifies the disk type for
|
|
3338
|
+
* <p>Specifies the instance disk type for pro edition. standard edition instances do not require this field. valid values: "CLOUD_SSD" (SSD CLOUD disk), "CLOUD_BASIC" (high-performance CLOUD block storage). default value: "CLOUD_BASIC".</p>.
|
|
3327
3339
|
* @type {string || null}
|
|
3328
3340
|
*/
|
|
3329
3341
|
this.DiskType = null;
|
|
3330
3342
|
|
|
3331
3343
|
/**
|
|
3332
|
-
*
|
|
3344
|
+
* <p>The peak bandwidth of the instance private network. the default value is 40 MB/s. for standard edition, input the peak bandwidth corresponding to the current instance specifications. note that if the instance created is a pro edition instance, parameter configurations such as peak bandwidth and number of partitions should meet the billing specification of the pro edition. you can view the billing specification through the following link: https://www.tencentcloud.comom/document/product/597/11745.?from_cn_redirect=1</p>.
|
|
3333
3345
|
* @type {number || null}
|
|
3334
3346
|
*/
|
|
3335
3347
|
this.BandWidth = null;
|
|
3336
3348
|
|
|
3337
3349
|
/**
|
|
3338
|
-
* Instance disk size. default value is 500. step length is set to 100. should meet the billing specification of the current instance. can be accessed through the following link: https://www.tencentcloud.comom/document/product/597/122562.?from_cn_redirect=1
|
|
3350
|
+
* <P>Instance disk size. default value is 500. step length is set to 100. should meet the billing specification of the current instance. can be accessed through the following link to view billing specifications: https://www.tencentcloud.comom/document/product/597/122562.?from_cn_redirect=1</p>.
|
|
3339
3351
|
* @type {number || null}
|
|
3340
3352
|
*/
|
|
3341
3353
|
this.DiskSize = null;
|
|
3342
3354
|
|
|
3343
3355
|
/**
|
|
3344
|
-
* Specifies the maximum number of partitions for the instance, which should meet the billing specification of the current instance. default value is 800 with a step length of 100. the billing specification can be viewed through the following link: https://www.tencentcloud.comom/document/product/597/122563.?from_cn_redirect=1
|
|
3356
|
+
* <P>Specifies the maximum number of partitions for the instance, which should meet the billing specification of the current instance. default value is 800 with a step length of 100. the billing specification can be viewed through the following link: https://www.tencentcloud.comom/document/product/597/122563.?from_cn_redirect=1</p>.
|
|
3345
3357
|
* @type {number || null}
|
|
3346
3358
|
*/
|
|
3347
3359
|
this.Partition = null;
|
|
3348
3360
|
|
|
3349
3361
|
/**
|
|
3350
|
-
*
|
|
3362
|
+
* <P>Specifies the maximum number of topics for the instance, which should meet the billing specification of the current instance. default value is 800. step length is set to 100.</p>.
|
|
3351
3363
|
* @type {number || null}
|
|
3352
3364
|
*/
|
|
3353
3365
|
this.TopicNum = null;
|
|
3354
3366
|
|
|
3355
3367
|
/**
|
|
3356
|
-
* Specifies the availability zone
|
|
3368
|
+
* Specifies the availability zone where the instance is located. when creating a multi-az instance, this parameter indicates the availability zone id of the subnet where the default access point is created. ZoneId and ZoneIds cannot be empty at the same time. you can obtain this information through the API <a href="https://www.tencentcloud.comom/document/product/597/55246?from_cn_redirect=1">DescribeCkafkaZone</a>.
|
|
3357
3369
|
* @type {number || null}
|
|
3358
3370
|
*/
|
|
3359
3371
|
this.ZoneId = null;
|
|
3360
3372
|
|
|
3361
3373
|
/**
|
|
3362
|
-
*
|
|
3374
|
+
* <P>Specifies whether the current instance is a multi-az instance.</p>.
|
|
3363
3375
|
* @type {boolean || null}
|
|
3364
3376
|
*/
|
|
3365
3377
|
this.MultiZoneFlag = null;
|
|
3366
3378
|
|
|
3367
3379
|
/**
|
|
3368
|
-
* Specifies the multi-
|
|
3380
|
+
* <p>Specifies the multi-availability zone id list when the instance is a multi-az instance. note the corresponding multi-availability zone for parameter ZoneId must be included in the parameter array. ZoneId and ZoneIds cannot be empty at the same time. obtain through the API <a href="https://www.tencentcloud.comom/document/product/597/55246?from_cn_redirect=1">DescribeCkafkaZone</a>.</p>.
|
|
3369
3381
|
* @type {Array.<number> || null}
|
|
3370
3382
|
*/
|
|
3371
3383
|
this.ZoneIds = null;
|
|
3372
3384
|
|
|
3373
3385
|
/**
|
|
3374
|
-
*
|
|
3386
|
+
* <p>Specifies the number of instances to purchase. optional. default value is 1. when input this parameter, it will create multiple instances with case-sensitive suffixes added to instanceName.</p>.
|
|
3375
3387
|
* @type {number || null}
|
|
3376
3388
|
*/
|
|
3377
3389
|
this.InstanceNum = null;
|
|
3378
3390
|
|
|
3379
3391
|
/**
|
|
3380
|
-
* Public
|
|
3392
|
+
* <p>Public bandwidth size in Mbps. the free 3 Mbps bandwidth is not included by default. for example, if the total required public network bandwidth is 3 Mbps, input 0 here; if the total required public network bandwidth is 6 Mbps, input 3 here. ensure the input parameter is a multiple of 3.</p>.
|
|
3381
3393
|
* @type {number || null}
|
|
3382
3394
|
*/
|
|
3383
3395
|
this.PublicNetworkMonthly = null;
|
|
3384
3396
|
|
|
3385
3397
|
/**
|
|
3386
|
-
* Tag
|
|
3398
|
+
* <p>Tag.</p>.
|
|
3387
3399
|
* @type {Array.<Tag> || null}
|
|
3388
3400
|
*/
|
|
3389
3401
|
this.Tags = null;
|
|
3390
3402
|
|
|
3391
3403
|
/**
|
|
3392
|
-
*
|
|
3404
|
+
* <P>Specifies the elastic bandwidth switch. 0: disable (default); 1: enable.</p>.
|
|
3393
3405
|
* @type {number || null}
|
|
3394
3406
|
*/
|
|
3395
3407
|
this.ElasticBandwidthSwitch = null;
|
|
3396
3408
|
|
|
3409
|
+
/**
|
|
3410
|
+
* <p>Specifies the custom certificate Id. this parameter is valid only when SpecificationsType is profession. supports custom certificate capacity.</p><p>can be obtained through the <a href="https://www.tencentcloud.comom/document/product/400/41673?from_cn_redirect=1">DescribeCertificateDetail</a> api.</p>.
|
|
3411
|
+
* @type {string || null}
|
|
3412
|
+
*/
|
|
3413
|
+
this.CustomSSLCertId = null;
|
|
3414
|
+
|
|
3397
3415
|
}
|
|
3398
3416
|
|
|
3399
3417
|
/**
|
|
@@ -3431,6 +3449,7 @@ class CreatePostPaidInstanceRequest extends AbstractModel {
|
|
|
3431
3449
|
}
|
|
3432
3450
|
}
|
|
3433
3451
|
this.ElasticBandwidthSwitch = 'ElasticBandwidthSwitch' in params ? params.ElasticBandwidthSwitch : null;
|
|
3452
|
+
this.CustomSSLCertId = 'CustomSSLCertId' in params ? params.CustomSSLCertId : null;
|
|
3434
3453
|
|
|
3435
3454
|
}
|
|
3436
3455
|
}
|
|
@@ -3628,6 +3647,83 @@ class DescribeTaskStatusResponse extends AbstractModel {
|
|
|
3628
3647
|
}
|
|
3629
3648
|
}
|
|
3630
3649
|
|
|
3650
|
+
/**
|
|
3651
|
+
* DescribeModifyType request structure.
|
|
3652
|
+
* @class
|
|
3653
|
+
*/
|
|
3654
|
+
class DescribeModifyTypeRequest extends AbstractModel {
|
|
3655
|
+
constructor(){
|
|
3656
|
+
super();
|
|
3657
|
+
|
|
3658
|
+
/**
|
|
3659
|
+
* CKafka cluster instance ID.
|
|
3660
|
+
* @type {string || null}
|
|
3661
|
+
*/
|
|
3662
|
+
this.InstanceId = null;
|
|
3663
|
+
|
|
3664
|
+
/**
|
|
3665
|
+
* Specifies the bandwidth after upgrade. measurement unit: mb.
|
|
3666
|
+
* @type {number || null}
|
|
3667
|
+
*/
|
|
3668
|
+
this.BandWidth = null;
|
|
3669
|
+
|
|
3670
|
+
/**
|
|
3671
|
+
* Specifies the disk after upgrade, in gb.
|
|
3672
|
+
* @type {number || null}
|
|
3673
|
+
*/
|
|
3674
|
+
this.DiskSize = null;
|
|
3675
|
+
|
|
3676
|
+
/**
|
|
3677
|
+
* Disk type, such as CLOUD_PREMIUM.
|
|
3678
|
+
* @type {string || null}
|
|
3679
|
+
*/
|
|
3680
|
+
this.DiskType = null;
|
|
3681
|
+
|
|
3682
|
+
/**
|
|
3683
|
+
* Number of partitions.
|
|
3684
|
+
* @type {number || null}
|
|
3685
|
+
*/
|
|
3686
|
+
this.Partition = null;
|
|
3687
|
+
|
|
3688
|
+
/**
|
|
3689
|
+
* Number of Topics
|
|
3690
|
+
* @type {number || null}
|
|
3691
|
+
*/
|
|
3692
|
+
this.Topic = null;
|
|
3693
|
+
|
|
3694
|
+
/**
|
|
3695
|
+
* Instance type, such as sp_ckafka_profession.
|
|
3696
|
+
* @type {string || null}
|
|
3697
|
+
*/
|
|
3698
|
+
this.Type = null;
|
|
3699
|
+
|
|
3700
|
+
/**
|
|
3701
|
+
* Configuration change portal.
|
|
3702
|
+
* @type {string || null}
|
|
3703
|
+
*/
|
|
3704
|
+
this.ModifyEntry = null;
|
|
3705
|
+
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
/**
|
|
3709
|
+
* @private
|
|
3710
|
+
*/
|
|
3711
|
+
deserialize(params) {
|
|
3712
|
+
if (!params) {
|
|
3713
|
+
return;
|
|
3714
|
+
}
|
|
3715
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3716
|
+
this.BandWidth = 'BandWidth' in params ? params.BandWidth : null;
|
|
3717
|
+
this.DiskSize = 'DiskSize' in params ? params.DiskSize : null;
|
|
3718
|
+
this.DiskType = 'DiskType' in params ? params.DiskType : null;
|
|
3719
|
+
this.Partition = 'Partition' in params ? params.Partition : null;
|
|
3720
|
+
this.Topic = 'Topic' in params ? params.Topic : null;
|
|
3721
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
3722
|
+
this.ModifyEntry = 'ModifyEntry' in params ? params.ModifyEntry : null;
|
|
3723
|
+
|
|
3724
|
+
}
|
|
3725
|
+
}
|
|
3726
|
+
|
|
3631
3727
|
/**
|
|
3632
3728
|
* Data structure returned by operation
|
|
3633
3729
|
* @class
|
|
@@ -5068,6 +5164,41 @@ Note: `null` may be returned for this field, indicating that no valid values can
|
|
|
5068
5164
|
}
|
|
5069
5165
|
}
|
|
5070
5166
|
|
|
5167
|
+
/**
|
|
5168
|
+
* DeleteRouteTriggerTime request structure.
|
|
5169
|
+
* @class
|
|
5170
|
+
*/
|
|
5171
|
+
class DeleteRouteTriggerTimeRequest extends AbstractModel {
|
|
5172
|
+
constructor(){
|
|
5173
|
+
super();
|
|
5174
|
+
|
|
5175
|
+
/**
|
|
5176
|
+
* ckafka cluster instance Id. obtain through the API [DescribeInstances](https://www.tencentcloud.comom/document/product/597/40835?from_cn_redirect=1).
|
|
5177
|
+
* @type {string || null}
|
|
5178
|
+
*/
|
|
5179
|
+
this.InstanceId = null;
|
|
5180
|
+
|
|
5181
|
+
/**
|
|
5182
|
+
* Modifies the scheduled time for deleting routes.
|
|
5183
|
+
* @type {string || null}
|
|
5184
|
+
*/
|
|
5185
|
+
this.DelayTime = null;
|
|
5186
|
+
|
|
5187
|
+
}
|
|
5188
|
+
|
|
5189
|
+
/**
|
|
5190
|
+
* @private
|
|
5191
|
+
*/
|
|
5192
|
+
deserialize(params) {
|
|
5193
|
+
if (!params) {
|
|
5194
|
+
return;
|
|
5195
|
+
}
|
|
5196
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5197
|
+
this.DelayTime = 'DelayTime' in params ? params.DelayTime : null;
|
|
5198
|
+
|
|
5199
|
+
}
|
|
5200
|
+
}
|
|
5201
|
+
|
|
5071
5202
|
/**
|
|
5072
5203
|
* DescribeTopicSubscribeGroup request structure.
|
|
5073
5204
|
* @class
|
|
@@ -5157,6 +5288,48 @@ class DeleteInstancePreResponse extends AbstractModel {
|
|
|
5157
5288
|
}
|
|
5158
5289
|
}
|
|
5159
5290
|
|
|
5291
|
+
/**
|
|
5292
|
+
* DeleteGroupSubscribeTopic request structure.
|
|
5293
|
+
* @class
|
|
5294
|
+
*/
|
|
5295
|
+
class DeleteGroupSubscribeTopicRequest extends AbstractModel {
|
|
5296
|
+
constructor(){
|
|
5297
|
+
super();
|
|
5298
|
+
|
|
5299
|
+
/**
|
|
5300
|
+
* CKafka cluster instance ID.
|
|
5301
|
+
* @type {string || null}
|
|
5302
|
+
*/
|
|
5303
|
+
this.InstanceId = null;
|
|
5304
|
+
|
|
5305
|
+
/**
|
|
5306
|
+
* Consumer group name.
|
|
5307
|
+
* @type {string || null}
|
|
5308
|
+
*/
|
|
5309
|
+
this.Group = null;
|
|
5310
|
+
|
|
5311
|
+
/**
|
|
5312
|
+
* Topic name
|
|
5313
|
+
* @type {string || null}
|
|
5314
|
+
*/
|
|
5315
|
+
this.Topic = null;
|
|
5316
|
+
|
|
5317
|
+
}
|
|
5318
|
+
|
|
5319
|
+
/**
|
|
5320
|
+
* @private
|
|
5321
|
+
*/
|
|
5322
|
+
deserialize(params) {
|
|
5323
|
+
if (!params) {
|
|
5324
|
+
return;
|
|
5325
|
+
}
|
|
5326
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5327
|
+
this.Group = 'Group' in params ? params.Group : null;
|
|
5328
|
+
this.Topic = 'Topic' in params ? params.Topic : null;
|
|
5329
|
+
|
|
5330
|
+
}
|
|
5331
|
+
}
|
|
5332
|
+
|
|
5160
5333
|
/**
|
|
5161
5334
|
* DataHub topic response
|
|
5162
5335
|
* @class
|
|
@@ -6071,6 +6244,46 @@ class AclResponse extends AbstractModel {
|
|
|
6071
6244
|
}
|
|
6072
6245
|
}
|
|
6073
6246
|
|
|
6247
|
+
/**
|
|
6248
|
+
* DescribeModifyType response structure.
|
|
6249
|
+
* @class
|
|
6250
|
+
*/
|
|
6251
|
+
class DescribeModifyTypeResponse extends AbstractModel {
|
|
6252
|
+
constructor(){
|
|
6253
|
+
super();
|
|
6254
|
+
|
|
6255
|
+
/**
|
|
6256
|
+
* Specifies the structure of the returned renewal type.
|
|
6257
|
+
* @type {DescModifyType || null}
|
|
6258
|
+
*/
|
|
6259
|
+
this.Result = null;
|
|
6260
|
+
|
|
6261
|
+
/**
|
|
6262
|
+
* 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.
|
|
6263
|
+
* @type {string || null}
|
|
6264
|
+
*/
|
|
6265
|
+
this.RequestId = null;
|
|
6266
|
+
|
|
6267
|
+
}
|
|
6268
|
+
|
|
6269
|
+
/**
|
|
6270
|
+
* @private
|
|
6271
|
+
*/
|
|
6272
|
+
deserialize(params) {
|
|
6273
|
+
if (!params) {
|
|
6274
|
+
return;
|
|
6275
|
+
}
|
|
6276
|
+
|
|
6277
|
+
if (params.Result) {
|
|
6278
|
+
let obj = new DescModifyType();
|
|
6279
|
+
obj.deserialize(params.Result)
|
|
6280
|
+
this.Result = obj;
|
|
6281
|
+
}
|
|
6282
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6283
|
+
|
|
6284
|
+
}
|
|
6285
|
+
}
|
|
6286
|
+
|
|
6074
6287
|
/**
|
|
6075
6288
|
* The entity returned for the query of Kafka’s zone information
|
|
6076
6289
|
* @class
|
|
@@ -7332,24 +7545,45 @@ class DescribeGroupOffsetsRequest extends AbstractModel {
|
|
|
7332
7545
|
}
|
|
7333
7546
|
|
|
7334
7547
|
/**
|
|
7335
|
-
*
|
|
7548
|
+
* Type query response parameters structure.
|
|
7336
7549
|
* @class
|
|
7337
7550
|
*/
|
|
7338
|
-
class
|
|
7551
|
+
class DescModifyType extends AbstractModel {
|
|
7339
7552
|
constructor(){
|
|
7340
7553
|
super();
|
|
7341
7554
|
|
|
7342
7555
|
/**
|
|
7343
|
-
*
|
|
7344
|
-
* @type {
|
|
7556
|
+
* Specifies the renewal type.
|
|
7557
|
+
* @type {number || null}
|
|
7345
7558
|
*/
|
|
7346
|
-
this.
|
|
7559
|
+
this.ModifyType = null;
|
|
7347
7560
|
|
|
7348
7561
|
/**
|
|
7349
|
-
*
|
|
7350
|
-
* @type {
|
|
7562
|
+
* Specifies whether to migrate.
|
|
7563
|
+
* @type {boolean || null}
|
|
7351
7564
|
*/
|
|
7352
|
-
this.
|
|
7565
|
+
this.MigrateFlag = null;
|
|
7566
|
+
|
|
7567
|
+
/**
|
|
7568
|
+
* Estimated duration of migration in stable mode (seconds).
|
|
7569
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7570
|
+
* @type {number || null}
|
|
7571
|
+
*/
|
|
7572
|
+
this.MigrateCostTime = null;
|
|
7573
|
+
|
|
7574
|
+
/**
|
|
7575
|
+
* Upgrade mode (1: stable mode, 2: high-speed mode).
|
|
7576
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7577
|
+
* @type {number || null}
|
|
7578
|
+
*/
|
|
7579
|
+
this.UpgradeStrategy = null;
|
|
7580
|
+
|
|
7581
|
+
/**
|
|
7582
|
+
* Indicates the estimated time for migration in high-speed mode, in seconds.
|
|
7583
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7584
|
+
* @type {number || null}
|
|
7585
|
+
*/
|
|
7586
|
+
this.MigrateCostTimeHighSpeed = null;
|
|
7353
7587
|
|
|
7354
7588
|
}
|
|
7355
7589
|
|
|
@@ -7360,8 +7594,11 @@ class DeleteRouteTriggerTimeRequest extends AbstractModel {
|
|
|
7360
7594
|
if (!params) {
|
|
7361
7595
|
return;
|
|
7362
7596
|
}
|
|
7363
|
-
this.
|
|
7364
|
-
this.
|
|
7597
|
+
this.ModifyType = 'ModifyType' in params ? params.ModifyType : null;
|
|
7598
|
+
this.MigrateFlag = 'MigrateFlag' in params ? params.MigrateFlag : null;
|
|
7599
|
+
this.MigrateCostTime = 'MigrateCostTime' in params ? params.MigrateCostTime : null;
|
|
7600
|
+
this.UpgradeStrategy = 'UpgradeStrategy' in params ? params.UpgradeStrategy : null;
|
|
7601
|
+
this.MigrateCostTimeHighSpeed = 'MigrateCostTimeHighSpeed' in params ? params.MigrateCostTimeHighSpeed : null;
|
|
7365
7602
|
|
|
7366
7603
|
}
|
|
7367
7604
|
}
|
|
@@ -7508,296 +7745,277 @@ class InstanceAttributesResponse extends AbstractModel {
|
|
|
7508
7745
|
super();
|
|
7509
7746
|
|
|
7510
7747
|
/**
|
|
7511
|
-
*
|
|
7748
|
+
* <p>ckafka cluster instance Id.</p>.
|
|
7512
7749
|
* @type {string || null}
|
|
7513
7750
|
*/
|
|
7514
7751
|
this.InstanceId = null;
|
|
7515
7752
|
|
|
7516
7753
|
/**
|
|
7517
|
-
* Specifies the Name of the ckafka cluster instance
|
|
7754
|
+
* <p>Specifies the Name of the ckafka cluster instance.</p>.
|
|
7518
7755
|
* @type {string || null}
|
|
7519
7756
|
*/
|
|
7520
7757
|
this.InstanceName = null;
|
|
7521
7758
|
|
|
7522
7759
|
/**
|
|
7523
|
-
* VIP list information
|
|
7760
|
+
* <p>Access point VIP list information.</p>.
|
|
7524
7761
|
* @type {Array.<VipEntity> || null}
|
|
7525
7762
|
*/
|
|
7526
7763
|
this.VipList = null;
|
|
7527
7764
|
|
|
7528
7765
|
/**
|
|
7529
|
-
* Virtual IP
|
|
7766
|
+
* <p>Virtual IP.</p>.
|
|
7530
7767
|
* @type {string || null}
|
|
7531
7768
|
*/
|
|
7532
7769
|
this.Vip = null;
|
|
7533
7770
|
|
|
7534
7771
|
/**
|
|
7535
|
-
* Virtual port
|
|
7772
|
+
* <P>Virtual port.</p>.
|
|
7536
7773
|
* @type {string || null}
|
|
7537
7774
|
*/
|
|
7538
7775
|
this.Vport = null;
|
|
7539
7776
|
|
|
7540
7777
|
/**
|
|
7541
|
-
*
|
|
7778
|
+
* <P>Specifies the instance status. valid values: 0 (creating), 1 (running), 2 (deleting), 3 (deleted), 5 (isolated), 7 (upgrading), -1 (creation failed).</p>.
|
|
7542
7779
|
* @type {number || null}
|
|
7543
7780
|
*/
|
|
7544
7781
|
this.Status = null;
|
|
7545
7782
|
|
|
7546
7783
|
/**
|
|
7547
|
-
* Instance bandwidth
|
|
7784
|
+
* <p>Instance bandwidth (unit: Mbps).</p>.
|
|
7548
7785
|
* @type {number || null}
|
|
7549
7786
|
*/
|
|
7550
7787
|
this.Bandwidth = null;
|
|
7551
7788
|
|
|
7552
7789
|
/**
|
|
7553
|
-
*
|
|
7790
|
+
* <p>Specifies the instance storage size in GB.</p>.
|
|
7554
7791
|
* @type {number || null}
|
|
7555
7792
|
*/
|
|
7556
7793
|
this.DiskSize = null;
|
|
7557
7794
|
|
|
7558
7795
|
/**
|
|
7559
|
-
*
|
|
7796
|
+
* <P>Specifies the availability zone.</p>.
|
|
7560
7797
|
* @type {number || null}
|
|
7561
7798
|
*/
|
|
7562
7799
|
this.ZoneId = null;
|
|
7563
7800
|
|
|
7564
7801
|
/**
|
|
7565
|
-
* VPC ID.
|
|
7802
|
+
* <p>VPC ID. being empty indicates a basic network.</p>.
|
|
7566
7803
|
* @type {string || null}
|
|
7567
7804
|
*/
|
|
7568
7805
|
this.VpcId = null;
|
|
7569
7806
|
|
|
7570
7807
|
/**
|
|
7571
|
-
*
|
|
7808
|
+
* <p>Specifies the subnet ID. being empty indicates the basic network.</p>.
|
|
7572
7809
|
* @type {string || null}
|
|
7573
7810
|
*/
|
|
7574
7811
|
this.SubnetId = null;
|
|
7575
7812
|
|
|
7576
7813
|
/**
|
|
7577
|
-
*
|
|
7814
|
+
* <P>Specifies the instance health status. valid values: 1 (healthy), 2 (alarm), 3 (abnormal).</p>.
|
|
7578
7815
|
* @type {number || null}
|
|
7579
7816
|
*/
|
|
7580
7817
|
this.Healthy = null;
|
|
7581
7818
|
|
|
7582
7819
|
/**
|
|
7583
|
-
* Instance health information.
|
|
7820
|
+
* <P>Instance health information. currently shows disk utilization rate. maximum length is 256.</p>.
|
|
7584
7821
|
* @type {string || null}
|
|
7585
7822
|
*/
|
|
7586
7823
|
this.HealthyMessage = null;
|
|
7587
7824
|
|
|
7588
7825
|
/**
|
|
7589
|
-
* Creation time
|
|
7826
|
+
* <P>Creation time.</p>.
|
|
7590
7827
|
* @type {number || null}
|
|
7591
7828
|
*/
|
|
7592
7829
|
this.CreateTime = null;
|
|
7593
7830
|
|
|
7594
7831
|
/**
|
|
7595
|
-
* Message retention period in minutes
|
|
7832
|
+
* <P>Message retention period, in minutes.</p>.
|
|
7596
7833
|
* @type {number || null}
|
|
7597
7834
|
*/
|
|
7598
7835
|
this.MsgRetentionTime = null;
|
|
7599
7836
|
|
|
7600
7837
|
/**
|
|
7601
|
-
*
|
|
7838
|
+
* <p>Automatic creation Topic configuration. if this field is empty, it indicates that automatic creation is not enabled.</p>.
|
|
7602
7839
|
* @type {InstanceConfigDO || null}
|
|
7603
7840
|
*/
|
|
7604
7841
|
this.Config = null;
|
|
7605
7842
|
|
|
7606
7843
|
/**
|
|
7607
|
-
* Number of remaining creatable partitions
|
|
7844
|
+
* <P>Number of remaining creatable partitions.</p>.
|
|
7608
7845
|
* @type {number || null}
|
|
7609
7846
|
*/
|
|
7610
7847
|
this.RemainderPartitions = null;
|
|
7611
7848
|
|
|
7612
7849
|
/**
|
|
7613
|
-
* Number of remaining creatable topics
|
|
7850
|
+
* <P>Number of remaining creatable topics.</p>.
|
|
7614
7851
|
* @type {number || null}
|
|
7615
7852
|
*/
|
|
7616
7853
|
this.RemainderTopics = null;
|
|
7617
7854
|
|
|
7618
7855
|
/**
|
|
7619
|
-
*
|
|
7856
|
+
* <P>Specifies the current number of partitions created.</p>.
|
|
7620
7857
|
* @type {number || null}
|
|
7621
7858
|
*/
|
|
7622
7859
|
this.CreatedPartitions = null;
|
|
7623
7860
|
|
|
7624
7861
|
/**
|
|
7625
|
-
*
|
|
7862
|
+
* <P>Specifies the current number of topics created.</p>.
|
|
7626
7863
|
* @type {number || null}
|
|
7627
7864
|
*/
|
|
7628
7865
|
this.CreatedTopics = null;
|
|
7629
7866
|
|
|
7630
7867
|
/**
|
|
7631
|
-
* Tag array
|
|
7868
|
+
* <P>Tag array.</p>.
|
|
7632
7869
|
* @type {Array.<Tag> || null}
|
|
7633
7870
|
*/
|
|
7634
7871
|
this.Tags = null;
|
|
7635
7872
|
|
|
7636
7873
|
/**
|
|
7637
|
-
*
|
|
7874
|
+
* <P>Specifies the expiration time.</p>.
|
|
7638
7875
|
* @type {number || null}
|
|
7639
7876
|
*/
|
|
7640
7877
|
this.ExpireTime = null;
|
|
7641
7878
|
|
|
7642
7879
|
/**
|
|
7643
|
-
*
|
|
7880
|
+
* <P>Specifies the availability zone list.</p>.
|
|
7644
7881
|
* @type {Array.<number> || null}
|
|
7645
7882
|
*/
|
|
7646
7883
|
this.ZoneIds = null;
|
|
7647
7884
|
|
|
7648
7885
|
/**
|
|
7649
|
-
* Specifies the ckafka cluster instance version
|
|
7886
|
+
* <P>Specifies the ckafka cluster instance version.</p>.
|
|
7650
7887
|
* @type {string || null}
|
|
7651
7888
|
*/
|
|
7652
7889
|
this.Version = null;
|
|
7653
7890
|
|
|
7654
7891
|
/**
|
|
7655
|
-
*
|
|
7892
|
+
* <P>Specifies the maximum number of groups.</p>.
|
|
7656
7893
|
* @type {number || null}
|
|
7657
7894
|
*/
|
|
7658
7895
|
this.MaxGroupNum = null;
|
|
7659
7896
|
|
|
7660
7897
|
/**
|
|
7661
|
-
* Sale type.
|
|
7898
|
+
* <P>Sale type. 0: standard version; 1: pro edition.</p>.
|
|
7662
7899
|
* @type {number || null}
|
|
7663
7900
|
*/
|
|
7664
7901
|
this.Cvm = null;
|
|
7665
7902
|
|
|
7666
7903
|
/**
|
|
7667
|
-
* Instance type.
|
|
7668
|
-
Specifies the pro edition.
|
|
7669
|
-
Standard version.
|
|
7670
|
-
premium. specifies the advanced edition.
|
|
7671
|
-
Specifies the serverless version.
|
|
7904
|
+
* <p>Instance type. enumerates the list: profession: pro edition; standards2: standard version; premium: advanced edition; serverless: serverless edition.</p>.
|
|
7672
7905
|
* @type {string || null}
|
|
7673
7906
|
*/
|
|
7674
7907
|
this.InstanceType = null;
|
|
7675
7908
|
|
|
7676
7909
|
/**
|
|
7677
|
-
* Indicates the characteristics supported by the instance. FEATURE_SUBNET_ACL
|
|
7910
|
+
* <p>Indicates the characteristics supported by the instance. FEATURE_SUBNET_ACL: indicates that the ACL policy supports setting subnets.</p>.
|
|
7678
7911
|
* @type {Array.<string> || null}
|
|
7679
7912
|
*/
|
|
7680
7913
|
this.Features = null;
|
|
7681
7914
|
|
|
7682
7915
|
/**
|
|
7683
|
-
* Dynamic message retention policy
|
|
7916
|
+
* <P>Dynamic message retention policy.</p>.
|
|
7684
7917
|
* @type {DynamicRetentionTime || null}
|
|
7685
7918
|
*/
|
|
7686
7919
|
this.RetentionTimeConfig = null;
|
|
7687
7920
|
|
|
7688
7921
|
/**
|
|
7689
|
-
* Maximum number of connections
|
|
7922
|
+
* <P>Maximum number of connections.</p>.
|
|
7690
7923
|
* @type {number || null}
|
|
7691
7924
|
*/
|
|
7692
7925
|
this.MaxConnection = null;
|
|
7693
7926
|
|
|
7694
7927
|
/**
|
|
7695
|
-
* Public network bandwidth
|
|
7928
|
+
* <P>Public network bandwidth.</p>.
|
|
7696
7929
|
* @type {number || null}
|
|
7697
7930
|
*/
|
|
7698
7931
|
this.PublicNetwork = null;
|
|
7699
7932
|
|
|
7700
7933
|
/**
|
|
7701
|
-
*
|
|
7934
|
+
* <P>Deprecated. no actual meaning.</p>.
|
|
7702
7935
|
* @type {string || null}
|
|
7703
7936
|
*/
|
|
7704
7937
|
this.DeleteRouteTimestamp = null;
|
|
7705
7938
|
|
|
7706
7939
|
/**
|
|
7707
|
-
* Number of remaining creatable partitions
|
|
7940
|
+
* <P>Number of remaining creatable partitions.</p>.
|
|
7708
7941
|
* @type {number || null}
|
|
7709
7942
|
*/
|
|
7710
7943
|
this.RemainingPartitions = null;
|
|
7711
7944
|
|
|
7712
7945
|
/**
|
|
7713
|
-
* Number of remaining creatable topics
|
|
7946
|
+
* <P>Number of remaining creatable topics.</p>.
|
|
7714
7947
|
* @type {number || null}
|
|
7715
7948
|
*/
|
|
7716
7949
|
this.RemainingTopics = null;
|
|
7717
7950
|
|
|
7718
7951
|
/**
|
|
7719
|
-
*
|
|
7952
|
+
* <P>Dynamic disk expansion policy.</p>.
|
|
7720
7953
|
* @type {DynamicDiskConfig || null}
|
|
7721
7954
|
*/
|
|
7722
7955
|
this.DynamicDiskConfig = null;
|
|
7723
7956
|
|
|
7724
7957
|
/**
|
|
7725
|
-
* Specifies the system maintenance time
|
|
7958
|
+
* <P>Specifies the system maintenance time.</p>.
|
|
7726
7959
|
* @type {string || null}
|
|
7727
7960
|
*/
|
|
7728
7961
|
this.SystemMaintenanceTime = null;
|
|
7729
7962
|
|
|
7730
7963
|
/**
|
|
7731
|
-
* Specifies the maximum size of
|
|
7964
|
+
* <P>Specifies the maximum size of instance level messages.</p>.
|
|
7732
7965
|
* @type {number || null}
|
|
7733
7966
|
*/
|
|
7734
7967
|
this.MaxMessageByte = null;
|
|
7735
7968
|
|
|
7736
7969
|
/**
|
|
7737
|
-
* Specifies the instance billing type. POSTPAID_BY_HOUR: hourly billing; PREPAID: annual/monthly package
|
|
7970
|
+
* <p>Specifies the instance billing type. POSTPAID_BY_HOUR: hourly billing; PREPAID: annual/monthly package.</p>.
|
|
7738
7971
|
* @type {string || null}
|
|
7739
7972
|
*/
|
|
7740
7973
|
this.InstanceChargeType = null;
|
|
7741
7974
|
|
|
7742
7975
|
/**
|
|
7743
|
-
*
|
|
7744
|
-
Indicates the allowlist feature with elastic bandwidth enabled.
|
|
7745
|
-
0: elastic bandwidth allowlist feature is disabled.
|
|
7976
|
+
* <p>Specifies whether to enable the elastic bandwidth allowlist. valid values: 1 (enabled), 0 (disabled).</p>.
|
|
7746
7977
|
* @type {number || null}
|
|
7747
7978
|
*/
|
|
7748
7979
|
this.ElasticBandwidthSwitch = null;
|
|
7749
7980
|
|
|
7750
7981
|
/**
|
|
7751
|
-
*
|
|
7752
|
-
1: indicates elastic bandwidth is disabled.
|
|
7753
|
-
Enable elastic bandwidth.
|
|
7754
|
-
Enable elastic bandwidth successfully.
|
|
7755
|
-
33: disabling elastic bandwidth.
|
|
7756
|
-
Indicates that the elastic bandwidth is successfully disabled.
|
|
7757
|
-
Enable elastic bandwidth failed.
|
|
7758
|
-
Bandwidth failure.
|
|
7982
|
+
* <P>Specifies the elastic bandwidth activation status. 1: elastic bandwidth is disabled; 16: enabling elastic bandwidth; 32: elastic bandwidth enabled successfully; 33: disabling elastic bandwidth; 34: elastic bandwidth disabled successfully; 64: failed to enable elastic bandwidth; 65: failed to disable elastic bandwidth.</p>.
|
|
7759
7983
|
* @type {number || null}
|
|
7760
7984
|
*/
|
|
7761
7985
|
this.ElasticBandwidthOpenStatus = null;
|
|
7762
7986
|
|
|
7763
7987
|
/**
|
|
7764
|
-
*
|
|
7765
|
-
CLOUD_IDC idc cluster.
|
|
7766
|
-
CLOUD_CVM_SHARE shared cluster.
|
|
7767
|
-
CLOUD_CVM_YUNTI yunti cvm cluster.
|
|
7768
|
-
CLOUD_CVM. specifies the cvm cluster.
|
|
7769
|
-
CLOUD_CDC cdc cluster.
|
|
7770
|
-
CLOUD_EKS_TSE eks cluster.
|
|
7988
|
+
* <p>ClusterType<br />CLOUD_IDC IDC cluster<br />CLOUD_CVM_SHARE CVM shared cluster<br />CLOUD_CVM_YUNTI YUNTI CVM cluster<br />CLOUD_CVM CVM cluster<br />CLOUD_CDC CDC cluster<br />CLOUD_EKS_TSE EKS cluster</p>.
|
|
7771
7989
|
* @type {string || null}
|
|
7772
7990
|
*/
|
|
7773
7991
|
this.ClusterType = null;
|
|
7774
7992
|
|
|
7775
7993
|
/**
|
|
7776
|
-
*
|
|
7994
|
+
* <P>Specifies the number of free partitions.</p>.
|
|
7777
7995
|
* @type {number || null}
|
|
7778
7996
|
*/
|
|
7779
7997
|
this.FreePartitionNumber = null;
|
|
7780
7998
|
|
|
7781
7999
|
/**
|
|
7782
|
-
* Specifies the elastic bandwidth upper limit
|
|
8000
|
+
* <P>Specifies the elastic bandwidth upper limit.</p>.
|
|
7783
8001
|
* @type {number || null}
|
|
7784
8002
|
*/
|
|
7785
8003
|
this.ElasticFloatBandwidth = null;
|
|
7786
8004
|
|
|
7787
8005
|
/**
|
|
7788
|
-
* ssl custom certificate id. only returned for instance clusters with custom certificates
|
|
8006
|
+
* <p>ssl custom certificate id. only returned for instance clusters with custom certificates.</p>.
|
|
7789
8007
|
* @type {string || null}
|
|
7790
8008
|
*/
|
|
7791
8009
|
this.CustomCertId = null;
|
|
7792
8010
|
|
|
7793
8011
|
/**
|
|
7794
|
-
*
|
|
8012
|
+
* <P>Specifies the default unclean.leader.election.enable configuration for cluster topics. valid values: 1 (enable), 0 (disable).</p>.
|
|
7795
8013
|
* @type {number || null}
|
|
7796
8014
|
*/
|
|
7797
8015
|
this.UncleanLeaderElectionEnable = null;
|
|
7798
8016
|
|
|
7799
8017
|
/**
|
|
7800
|
-
*
|
|
8018
|
+
* <P>Specifies the instance deletion protection switch. valid values: 1 (enabled), 0 (disabled).</p>.
|
|
7801
8019
|
* @type {number || null}
|
|
7802
8020
|
*/
|
|
7803
8021
|
this.DeleteProtectionEnable = null;
|
|
@@ -8362,7 +8580,7 @@ class CreateInstancePreResponse extends AbstractModel {
|
|
|
8362
8580
|
super();
|
|
8363
8581
|
|
|
8364
8582
|
/**
|
|
8365
|
-
* Returned result
|
|
8583
|
+
* <P>Returned result.</p>.
|
|
8366
8584
|
* @type {CreateInstancePreResp || null}
|
|
8367
8585
|
*/
|
|
8368
8586
|
this.Result = null;
|
|
@@ -8708,6 +8926,46 @@ class CreateConsumerRequest extends AbstractModel {
|
|
|
8708
8926
|
}
|
|
8709
8927
|
}
|
|
8710
8928
|
|
|
8929
|
+
/**
|
|
8930
|
+
* DeleteGroupSubscribeTopic response structure.
|
|
8931
|
+
* @class
|
|
8932
|
+
*/
|
|
8933
|
+
class DeleteGroupSubscribeTopicResponse extends AbstractModel {
|
|
8934
|
+
constructor(){
|
|
8935
|
+
super();
|
|
8936
|
+
|
|
8937
|
+
/**
|
|
8938
|
+
* Returned result.
|
|
8939
|
+
* @type {JgwOperateResponse || null}
|
|
8940
|
+
*/
|
|
8941
|
+
this.Result = null;
|
|
8942
|
+
|
|
8943
|
+
/**
|
|
8944
|
+
* 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.
|
|
8945
|
+
* @type {string || null}
|
|
8946
|
+
*/
|
|
8947
|
+
this.RequestId = null;
|
|
8948
|
+
|
|
8949
|
+
}
|
|
8950
|
+
|
|
8951
|
+
/**
|
|
8952
|
+
* @private
|
|
8953
|
+
*/
|
|
8954
|
+
deserialize(params) {
|
|
8955
|
+
if (!params) {
|
|
8956
|
+
return;
|
|
8957
|
+
}
|
|
8958
|
+
|
|
8959
|
+
if (params.Result) {
|
|
8960
|
+
let obj = new JgwOperateResponse();
|
|
8961
|
+
obj.deserialize(params.Result)
|
|
8962
|
+
this.Result = obj;
|
|
8963
|
+
}
|
|
8964
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8965
|
+
|
|
8966
|
+
}
|
|
8967
|
+
}
|
|
8968
|
+
|
|
8711
8969
|
/**
|
|
8712
8970
|
* InquireCkafkaPrice response structure.
|
|
8713
8971
|
* @class
|
|
@@ -8797,7 +9055,7 @@ class CreatePostPaidInstanceResponse extends AbstractModel {
|
|
|
8797
9055
|
super();
|
|
8798
9056
|
|
|
8799
9057
|
/**
|
|
8800
|
-
* Returned result
|
|
9058
|
+
* <P>Returned result.</p>.
|
|
8801
9059
|
* @type {CreateInstancePostResp || null}
|
|
8802
9060
|
*/
|
|
8803
9061
|
this.Result = null;
|
|
@@ -9197,6 +9455,41 @@ class BatchModifyGroupOffsetsRequest extends AbstractModel {
|
|
|
9197
9455
|
}
|
|
9198
9456
|
}
|
|
9199
9457
|
|
|
9458
|
+
/**
|
|
9459
|
+
* Message price entity
|
|
9460
|
+
* @class
|
|
9461
|
+
*/
|
|
9462
|
+
class Price extends AbstractModel {
|
|
9463
|
+
constructor(){
|
|
9464
|
+
super();
|
|
9465
|
+
|
|
9466
|
+
/**
|
|
9467
|
+
* Discounted price
|
|
9468
|
+
* @type {number || null}
|
|
9469
|
+
*/
|
|
9470
|
+
this.RealTotalCost = null;
|
|
9471
|
+
|
|
9472
|
+
/**
|
|
9473
|
+
* Original price
|
|
9474
|
+
* @type {number || null}
|
|
9475
|
+
*/
|
|
9476
|
+
this.TotalCost = null;
|
|
9477
|
+
|
|
9478
|
+
}
|
|
9479
|
+
|
|
9480
|
+
/**
|
|
9481
|
+
* @private
|
|
9482
|
+
*/
|
|
9483
|
+
deserialize(params) {
|
|
9484
|
+
if (!params) {
|
|
9485
|
+
return;
|
|
9486
|
+
}
|
|
9487
|
+
this.RealTotalCost = 'RealTotalCost' in params ? params.RealTotalCost : null;
|
|
9488
|
+
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
9489
|
+
|
|
9490
|
+
}
|
|
9491
|
+
}
|
|
9492
|
+
|
|
9200
9493
|
/**
|
|
9201
9494
|
* CVM and IP information list.
|
|
9202
9495
|
* @class
|
|
@@ -11029,137 +11322,143 @@ class CreateInstancePreRequest extends AbstractModel {
|
|
|
11029
11322
|
super();
|
|
11030
11323
|
|
|
11031
11324
|
/**
|
|
11032
|
-
* Specifies the ckafka cluster instance
|
|
11325
|
+
* <p>Specifies the Name of the ckafka cluster instance, which is any string with a length not more than 128 characters.</p>.
|
|
11033
11326
|
* @type {string || null}
|
|
11034
11327
|
*/
|
|
11035
11328
|
this.InstanceName = null;
|
|
11036
11329
|
|
|
11037
11330
|
/**
|
|
11038
|
-
* Availability zone. when purchasing a multi-availability zone instance, this parameter specifies the primary az.
|
|
11331
|
+
* <P>Availability zone. when purchasing a multi-availability zone instance, this parameter specifies the primary az. <a href="https://www.tencentcloud.comom/document/product/597/55246?from_cn_redirect=1">view availability zones</a></p>.
|
|
11039
11332
|
* @type {number || null}
|
|
11040
11333
|
*/
|
|
11041
11334
|
this.ZoneId = null;
|
|
11042
11335
|
|
|
11043
11336
|
/**
|
|
11044
|
-
*
|
|
11337
|
+
* <P>Specifies the prepaid purchase duration, such as "1m" (exactly one month). value ranges from 1m to 36m.</p>.
|
|
11045
11338
|
* @type {string || null}
|
|
11046
11339
|
*/
|
|
11047
11340
|
this.Period = null;
|
|
11048
11341
|
|
|
11049
11342
|
/**
|
|
11050
|
-
* Specifies the standard edition instance specification for the international site. currently only the international site
|
|
11343
|
+
* <P>Specifies the standard edition instance specification for the international site. currently only the standard edition on the international site uses the current field to distinguish specifications, while the domestic site standard edition uses peak bandwidth. fill in 1 for all instances except the international site standard edition. for international site standard edition instances: [entry-level (general)] fill 1; [standard type (standard)] fill 2; [advanced] fill 3; [capacity type (capacity)] fill 4; [advanced type 1 (specialized-1)] fill 5; [advanced type 2 (specialized-2)] fill 6; [advanced type 3 (specialized-3)] fill 7; [advanced type 4 (specialized-4)] fill 8.</p>.
|
|
11051
11344
|
* @type {number || null}
|
|
11052
11345
|
*/
|
|
11053
11346
|
this.InstanceType = null;
|
|
11054
11347
|
|
|
11055
11348
|
/**
|
|
11056
|
-
* VPC Id
|
|
11349
|
+
* <p>VPC Id.</p>.
|
|
11057
11350
|
* @type {string || null}
|
|
11058
11351
|
*/
|
|
11059
11352
|
this.VpcId = null;
|
|
11060
11353
|
|
|
11061
11354
|
/**
|
|
11062
|
-
* Subnet
|
|
11355
|
+
* <P>Subnet id.</p>.
|
|
11063
11356
|
* @type {string || null}
|
|
11064
11357
|
*/
|
|
11065
11358
|
this.SubnetId = null;
|
|
11066
11359
|
|
|
11067
11360
|
/**
|
|
11068
|
-
* Optional. maximum retention time
|
|
11361
|
+
* <P>Optional. specifies the maximum retention time for instance logs, in minutes. default value: 1440 (1 day) when left blank. configurable range: 1 minute to 90 days.</p>.
|
|
11069
11362
|
* @type {number || null}
|
|
11070
11363
|
*/
|
|
11071
11364
|
this.MsgRetentionTime = null;
|
|
11072
11365
|
|
|
11073
11366
|
/**
|
|
11074
|
-
* Specifies the cluster Id when creating an instance.
|
|
11367
|
+
* <p>Specifies the cluster Id when creating an instance. this parameter indicates the cluster Id.</p>.
|
|
11075
11368
|
* @type {number || null}
|
|
11076
11369
|
*/
|
|
11077
11370
|
this.ClusterId = null;
|
|
11078
11371
|
|
|
11079
11372
|
/**
|
|
11080
|
-
* Auto-Renewal tag for prepaid services.
|
|
11373
|
+
* <P>Auto-Renewal tag for prepaid services. 0 means default state (not set by the user, i.e. initial state), 1 means auto-renew, 2 means explicitly no auto-renew (set by the user).</p>.
|
|
11081
11374
|
* @type {number || null}
|
|
11082
11375
|
*/
|
|
11083
11376
|
this.RenewFlag = null;
|
|
11084
11377
|
|
|
11085
11378
|
/**
|
|
11086
|
-
* Specifies the CKafka version number. valid values: 2.4.1, 2.4.2, 2.8.1, 3.2.3. default value 2.4.1. 2.4.1 and 2.4.2 belong to the same version
|
|
11379
|
+
* <p>Specifies the CKafka version number. valid values: 2.4.1, 2.4.2, 2.8.1, 3.2.3. default value is 2.4.1. 2.4.1 and 2.4.2 belong to the same version, any one can be passed.</p>.
|
|
11087
11380
|
* @type {string || null}
|
|
11088
11381
|
*/
|
|
11089
11382
|
this.KafkaVersion = null;
|
|
11090
11383
|
|
|
11091
11384
|
/**
|
|
11092
|
-
*
|
|
11385
|
+
* <P>Instance type. specifies "standard" for standard edition instance (default), "profession" for professional edition instance, "premium" for advanced edition instance.</p>.
|
|
11093
11386
|
* @type {string || null}
|
|
11094
11387
|
*/
|
|
11095
11388
|
this.SpecificationsType = null;
|
|
11096
11389
|
|
|
11097
11390
|
/**
|
|
11098
|
-
* Disk size. if it does not match the console specification ratio,
|
|
11391
|
+
* <P>Disk size. if it does not match the console specification ratio, creation cannot succeed. default value is 500. step length is set to 100. can be accessed through the following link to view billing specifications: https://www.tencentcloud.comom/document/product/597/122562.?from_cn_redirect=1</p>.
|
|
11099
11392
|
* @type {number || null}
|
|
11100
11393
|
*/
|
|
11101
11394
|
this.DiskSize = null;
|
|
11102
11395
|
|
|
11103
11396
|
/**
|
|
11104
|
-
* Instance bandwidth
|
|
11397
|
+
* <p>Instance bandwidth, default value is 40, unit MB/s. minimum value: 20MB/s. advanced edition maximum value: 360MB/s. professional edition maximum value: 100000MB/s. standard version fixed bandwidth specifications: 40MB/s, 100MB/s, 150MB/s. billing specifications can be viewed through the following link: https://www.tencentcloud.comom/document/product/597/11745.?from_cn_redirect=1</p>.
|
|
11105
11398
|
* @type {number || null}
|
|
11106
11399
|
*/
|
|
11107
11400
|
this.BandWidth = null;
|
|
11108
11401
|
|
|
11109
11402
|
/**
|
|
11110
|
-
*
|
|
11403
|
+
* <P>Specifies the partition size. if it does not match the console specification ratio, the creation cannot succeed. default value is 800 with a step length of 100. view billing specifications through the following link: https://www.tencentcloud.comom/document/product/597/122563.?from_cn_redirect=1</p>.
|
|
11111
11404
|
* @type {number || null}
|
|
11112
11405
|
*/
|
|
11113
11406
|
this.Partition = null;
|
|
11114
11407
|
|
|
11115
11408
|
/**
|
|
11116
|
-
* Tag
|
|
11409
|
+
* <p>Tag.</p>.
|
|
11117
11410
|
* @type {Array.<Tag> || null}
|
|
11118
11411
|
*/
|
|
11119
11412
|
this.Tags = null;
|
|
11120
11413
|
|
|
11121
11414
|
/**
|
|
11122
|
-
* Specifies the disk type for
|
|
11415
|
+
* <p>Specifies the instance disk type for pro edition/advanced edition. standard edition instances do not require this field. valid values: "CLOUD_SSD" (SSD CLOUD disk), "CLOUD_BASIC" (high-performance CLOUD block storage). default value: "CLOUD_BASIC".</p>.
|
|
11123
11416
|
* @type {string || null}
|
|
11124
11417
|
*/
|
|
11125
11418
|
this.DiskType = null;
|
|
11126
11419
|
|
|
11127
11420
|
/**
|
|
11128
|
-
* Specifies whether to create a cross-
|
|
11421
|
+
* <p>Specifies whether to create a cross-availability zone instance. when the current parameter is true, zoneIds is required.</p>.
|
|
11129
11422
|
* @type {boolean || null}
|
|
11130
11423
|
*/
|
|
11131
11424
|
this.MultiZoneFlag = null;
|
|
11132
11425
|
|
|
11133
11426
|
/**
|
|
11134
|
-
* Availability zone list. required item when purchasing
|
|
11427
|
+
* <P>Availability zone list. required item when purchasing multi-availability zone instance.</p>.
|
|
11135
11428
|
* @type {Array.<number> || null}
|
|
11136
11429
|
*/
|
|
11137
11430
|
this.ZoneIds = null;
|
|
11138
11431
|
|
|
11139
11432
|
/**
|
|
11140
|
-
*
|
|
11433
|
+
* <p>Specifies the public bandwidth size in Mbps. the free 3 Mbps bandwidth is not included by default. for example, if the total required public network bandwidth is 3 Mbps, input 0 here; if the total required public network bandwidth is 6 Mbps, input 3 here. default value: 0. ensure the input parameter is a multiple of 3.</p>.
|
|
11141
11434
|
* @type {number || null}
|
|
11142
11435
|
*/
|
|
11143
11436
|
this.PublicNetworkMonthly = null;
|
|
11144
11437
|
|
|
11145
11438
|
/**
|
|
11146
|
-
*
|
|
11439
|
+
* <p>Specifies the number of instances to purchase. optional. default value is 1. when input this parameter, it will create multiple instances with case-sensitive suffixes added to instanceName.</p>.
|
|
11147
11440
|
* @type {number || null}
|
|
11148
11441
|
*/
|
|
11149
11442
|
this.InstanceNum = null;
|
|
11150
11443
|
|
|
11151
11444
|
/**
|
|
11152
|
-
*
|
|
11445
|
+
* <P>Specifies whether to automatically select voucher. valid values: 1-yes; 0-no. default is 0.</p>.
|
|
11153
11446
|
* @type {number || null}
|
|
11154
11447
|
*/
|
|
11155
11448
|
this.AutoVoucher = null;
|
|
11156
11449
|
|
|
11157
11450
|
/**
|
|
11158
|
-
* Elastic bandwidth switch
|
|
11451
|
+
* <P>Elastic bandwidth switch 0 disable 1 enable (0 default).</p>.
|
|
11159
11452
|
* @type {number || null}
|
|
11160
11453
|
*/
|
|
11161
11454
|
this.ElasticBandwidthSwitch = null;
|
|
11162
11455
|
|
|
11456
|
+
/**
|
|
11457
|
+
* <p>Specifies the custom certificate Id. this parameter is valid only when SpecificationsType is profession. supports custom certificate capacity.</p><p>can be obtained through the <a href="https://www.tencentcloud.comom/document/product/400/41673?from_cn_redirect=1">DescribeCertificateDetail</a> api.</p>.
|
|
11458
|
+
* @type {string || null}
|
|
11459
|
+
*/
|
|
11460
|
+
this.CustomSSLCertId = null;
|
|
11461
|
+
|
|
11163
11462
|
}
|
|
11164
11463
|
|
|
11165
11464
|
/**
|
|
@@ -11199,6 +11498,7 @@ class CreateInstancePreRequest extends AbstractModel {
|
|
|
11199
11498
|
this.InstanceNum = 'InstanceNum' in params ? params.InstanceNum : null;
|
|
11200
11499
|
this.AutoVoucher = 'AutoVoucher' in params ? params.AutoVoucher : null;
|
|
11201
11500
|
this.ElasticBandwidthSwitch = 'ElasticBandwidthSwitch' in params ? params.ElasticBandwidthSwitch : null;
|
|
11501
|
+
this.CustomSSLCertId = 'CustomSSLCertId' in params ? params.CustomSSLCertId : null;
|
|
11202
11502
|
|
|
11203
11503
|
}
|
|
11204
11504
|
}
|
|
@@ -11561,193 +11861,193 @@ class InstanceDetail extends AbstractModel {
|
|
|
11561
11861
|
super();
|
|
11562
11862
|
|
|
11563
11863
|
/**
|
|
11564
|
-
*
|
|
11864
|
+
* <p>ckafka cluster instance Id.</p>.
|
|
11565
11865
|
* @type {string || null}
|
|
11566
11866
|
*/
|
|
11567
11867
|
this.InstanceId = null;
|
|
11568
11868
|
|
|
11569
11869
|
/**
|
|
11570
|
-
*
|
|
11870
|
+
* <P>Specifies the name of the ckafka cluster instance.</p>.
|
|
11571
11871
|
* @type {string || null}
|
|
11572
11872
|
*/
|
|
11573
11873
|
this.InstanceName = null;
|
|
11574
11874
|
|
|
11575
11875
|
/**
|
|
11576
|
-
*
|
|
11876
|
+
* <P>Specifies the vip information for accessing the instance.</p>.
|
|
11577
11877
|
* @type {string || null}
|
|
11578
11878
|
*/
|
|
11579
11879
|
this.Vip = null;
|
|
11580
11880
|
|
|
11581
11881
|
/**
|
|
11582
|
-
*
|
|
11882
|
+
* <P>Specifies the port information to access the instance.</p>.
|
|
11583
11883
|
* @type {string || null}
|
|
11584
11884
|
*/
|
|
11585
11885
|
this.Vport = null;
|
|
11586
11886
|
|
|
11587
11887
|
/**
|
|
11588
|
-
*
|
|
11888
|
+
* <p>Specifies the virtual IP list.</p>.
|
|
11589
11889
|
* @type {Array.<VipEntity> || null}
|
|
11590
11890
|
*/
|
|
11591
11891
|
this.VipList = null;
|
|
11592
11892
|
|
|
11593
11893
|
/**
|
|
11594
|
-
*
|
|
11894
|
+
* <P>Specifies the instance status. valid values: 0 (creating), 1 (running), 2 (deleting), 3 (deleted), 5 (isolated), 7 (upgrading), -1 (creation failed).</p>.
|
|
11595
11895
|
* @type {number || null}
|
|
11596
11896
|
*/
|
|
11597
11897
|
this.Status = null;
|
|
11598
11898
|
|
|
11599
11899
|
/**
|
|
11600
|
-
*
|
|
11900
|
+
* <p>Specifies the instance bandwidth in Mbps.</p>.
|
|
11601
11901
|
* @type {number || null}
|
|
11602
11902
|
*/
|
|
11603
11903
|
this.Bandwidth = null;
|
|
11604
11904
|
|
|
11605
11905
|
/**
|
|
11606
|
-
* Specifies the ckafka cluster instance
|
|
11906
|
+
* <p>Specifies the disk size of the ckafka cluster instance, in gb.</p>.
|
|
11607
11907
|
* @type {number || null}
|
|
11608
11908
|
*/
|
|
11609
11909
|
this.DiskSize = null;
|
|
11610
11910
|
|
|
11611
11911
|
/**
|
|
11612
|
-
*
|
|
11912
|
+
* <p>Specifies the available zone ID.</p>.
|
|
11613
11913
|
* @type {number || null}
|
|
11614
11914
|
*/
|
|
11615
11915
|
this.ZoneId = null;
|
|
11616
11916
|
|
|
11617
11917
|
/**
|
|
11618
|
-
* vpcId.
|
|
11918
|
+
* <p>vpcId. if empty, indicates a basic network.</p>.
|
|
11619
11919
|
* @type {string || null}
|
|
11620
11920
|
*/
|
|
11621
11921
|
this.VpcId = null;
|
|
11622
11922
|
|
|
11623
11923
|
/**
|
|
11624
|
-
* Subnet
|
|
11924
|
+
* <P>Subnet id.</p>.
|
|
11625
11925
|
* @type {string || null}
|
|
11626
11926
|
*/
|
|
11627
11927
|
this.SubnetId = null;
|
|
11628
11928
|
|
|
11629
11929
|
/**
|
|
11630
|
-
*
|
|
11930
|
+
* <P>Specifies whether to renew the instance. int enumeration value: 1 means auto-renew, 2 means explicitly no auto-renew.</p>.
|
|
11631
11931
|
* @type {number || null}
|
|
11632
11932
|
*/
|
|
11633
11933
|
this.RenewFlag = null;
|
|
11634
11934
|
|
|
11635
11935
|
/**
|
|
11636
|
-
*
|
|
11936
|
+
* <p>Specifies the instance status. valid values: 1 (healthy), 2 (alarm), 3 (instance status exception).</p>.
|
|
11637
11937
|
* @type {number || null}
|
|
11638
11938
|
*/
|
|
11639
11939
|
this.Healthy = null;
|
|
11640
11940
|
|
|
11641
11941
|
/**
|
|
11642
|
-
*
|
|
11942
|
+
* <P>Specifies the instance status information.</p>.
|
|
11643
11943
|
* @type {string || null}
|
|
11644
11944
|
*/
|
|
11645
11945
|
this.HealthyMessage = null;
|
|
11646
11946
|
|
|
11647
11947
|
/**
|
|
11648
|
-
*
|
|
11948
|
+
* <P>Specifies the instance creation time.</p>.
|
|
11649
11949
|
* @type {number || null}
|
|
11650
11950
|
*/
|
|
11651
11951
|
this.CreateTime = null;
|
|
11652
11952
|
|
|
11653
11953
|
/**
|
|
11654
|
-
*
|
|
11954
|
+
* <P>Specifies the instance expiration time.</p>.
|
|
11655
11955
|
* @type {number || null}
|
|
11656
11956
|
*/
|
|
11657
11957
|
this.ExpireTime = null;
|
|
11658
11958
|
|
|
11659
11959
|
/**
|
|
11660
|
-
*
|
|
11960
|
+
* <P>Specifies whether it is an internal customer. a value of 1 indicates an internal customer.</p>.
|
|
11661
11961
|
* @type {number || null}
|
|
11662
11962
|
*/
|
|
11663
11963
|
this.IsInternal = null;
|
|
11664
11964
|
|
|
11665
11965
|
/**
|
|
11666
|
-
*
|
|
11966
|
+
* <p>Specifies the number of topics.</p>.
|
|
11667
11967
|
* @type {number || null}
|
|
11668
11968
|
*/
|
|
11669
11969
|
this.TopicNum = null;
|
|
11670
11970
|
|
|
11671
11971
|
/**
|
|
11672
|
-
*
|
|
11972
|
+
* <P>Specifies the identifier tag.</p>.
|
|
11673
11973
|
* @type {Array.<Tag> || null}
|
|
11674
11974
|
*/
|
|
11675
11975
|
this.Tags = null;
|
|
11676
11976
|
|
|
11677
11977
|
/**
|
|
11678
|
-
* kafka version information
|
|
11978
|
+
* <p>kafka version information.</p>.
|
|
11679
11979
|
* @type {string || null}
|
|
11680
11980
|
*/
|
|
11681
11981
|
this.Version = null;
|
|
11682
11982
|
|
|
11683
11983
|
/**
|
|
11684
|
-
*
|
|
11984
|
+
* <P>Specifies the cross-availability zone.</p>.
|
|
11685
11985
|
* @type {Array.<number> || null}
|
|
11686
11986
|
*/
|
|
11687
11987
|
this.ZoneIds = null;
|
|
11688
11988
|
|
|
11689
11989
|
/**
|
|
11690
|
-
* ckafka sales type
|
|
11990
|
+
* <P>Specifies the ckafka sales type.</p>.
|
|
11691
11991
|
* @type {number || null}
|
|
11692
11992
|
*/
|
|
11693
11993
|
this.Cvm = null;
|
|
11694
11994
|
|
|
11695
11995
|
/**
|
|
11696
|
-
* Specifies the cluster instance type
|
|
11996
|
+
* <P>Specifies the ckafka cluster instance type.</p>.
|
|
11697
11997
|
* @type {string || null}
|
|
11698
11998
|
*/
|
|
11699
11999
|
this.InstanceType = null;
|
|
11700
12000
|
|
|
11701
12001
|
/**
|
|
11702
|
-
* Specifies the ckafka cluster instance
|
|
12002
|
+
* <P>Specifies the disk type of the ckafka cluster instance.</p>.
|
|
11703
12003
|
* @type {string || null}
|
|
11704
12004
|
*/
|
|
11705
12005
|
this.DiskType = null;
|
|
11706
12006
|
|
|
11707
12007
|
/**
|
|
11708
|
-
* Maximum number of topics for current specifications
|
|
12008
|
+
* <p>Maximum number of topics for current specifications.</p>.
|
|
11709
12009
|
* @type {number || null}
|
|
11710
12010
|
*/
|
|
11711
12011
|
this.MaxTopicNumber = null;
|
|
11712
12012
|
|
|
11713
12013
|
/**
|
|
11714
|
-
*
|
|
12014
|
+
* <p>Specifies the maximum number of partitions for current specifications.</p>.
|
|
11715
12015
|
* @type {number || null}
|
|
11716
12016
|
*/
|
|
11717
12017
|
this.MaxPartitionNumber = null;
|
|
11718
12018
|
|
|
11719
12019
|
/**
|
|
11720
|
-
*
|
|
12020
|
+
* <P>Specifies the planned configuration upgrade time.</p>.
|
|
11721
12021
|
* @type {string || null}
|
|
11722
12022
|
*/
|
|
11723
12023
|
this.RebalanceTime = null;
|
|
11724
12024
|
|
|
11725
12025
|
/**
|
|
11726
|
-
*
|
|
12026
|
+
* <P>Current number of partitions of the instance.</p>.
|
|
11727
12027
|
* @type {number || null}
|
|
11728
12028
|
*/
|
|
11729
12029
|
this.PartitionNumber = null;
|
|
11730
12030
|
|
|
11731
12031
|
/**
|
|
11732
|
-
* Specifies the public network bandwidth type of the ckafka cluster instance
|
|
12032
|
+
* <P>Specifies the public network bandwidth type of the ckafka cluster instance.</p>.
|
|
11733
12033
|
* @type {string || null}
|
|
11734
12034
|
*/
|
|
11735
12035
|
this.PublicNetworkChargeType = null;
|
|
11736
12036
|
|
|
11737
12037
|
/**
|
|
11738
|
-
*
|
|
12038
|
+
* <p>Specifies the public network bandwidth. value range: 3Mbps to 999Mbps. only supported in pro edition.</p>.
|
|
11739
12039
|
* @type {number || null}
|
|
11740
12040
|
*/
|
|
11741
12041
|
this.PublicNetwork = null;
|
|
11742
12042
|
|
|
11743
12043
|
/**
|
|
11744
|
-
* Specifies the underlying cluster type of the ckafka cluster instance
|
|
12044
|
+
* <P>Specifies the underlying cluster type of the ckafka cluster instance.</p>.
|
|
11745
12045
|
* @type {string || null}
|
|
11746
12046
|
*/
|
|
11747
12047
|
this.ClusterType = null;
|
|
11748
12048
|
|
|
11749
12049
|
/**
|
|
11750
|
-
*
|
|
12050
|
+
* <P>Specifies the instance feature list.</p>.
|
|
11751
12051
|
* @type {Array.<string> || null}
|
|
11752
12052
|
*/
|
|
11753
12053
|
this.Features = null;
|
|
@@ -11990,6 +12290,77 @@ class AclRuleResp extends AbstractModel {
|
|
|
11990
12290
|
}
|
|
11991
12291
|
}
|
|
11992
12292
|
|
|
12293
|
+
/**
|
|
12294
|
+
* Instance version information.
|
|
12295
|
+
* @class
|
|
12296
|
+
*/
|
|
12297
|
+
class InstanceVersion extends AbstractModel {
|
|
12298
|
+
constructor(){
|
|
12299
|
+
super();
|
|
12300
|
+
|
|
12301
|
+
/**
|
|
12302
|
+
* CKafka cluster instance version.
|
|
12303
|
+
* @type {string || null}
|
|
12304
|
+
*/
|
|
12305
|
+
this.KafkaVersion = null;
|
|
12306
|
+
|
|
12307
|
+
/**
|
|
12308
|
+
* Broker version information.
|
|
12309
|
+
* @type {string || null}
|
|
12310
|
+
*/
|
|
12311
|
+
this.CurBrokerVersion = null;
|
|
12312
|
+
|
|
12313
|
+
/**
|
|
12314
|
+
* Latest version information.
|
|
12315
|
+
* @type {Array.<LatestBrokerVersion> || null}
|
|
12316
|
+
*/
|
|
12317
|
+
this.LatestBrokerVersion = null;
|
|
12318
|
+
|
|
12319
|
+
/**
|
|
12320
|
+
* Whether to allow kernel upgrades across major versions.
|
|
12321
|
+
* @type {boolean || null}
|
|
12322
|
+
*/
|
|
12323
|
+
this.AllowUpgradeHighVersion = null;
|
|
12324
|
+
|
|
12325
|
+
/**
|
|
12326
|
+
* Major version allowed for upgrades.
|
|
12327
|
+
* @type {Array.<string> || null}
|
|
12328
|
+
*/
|
|
12329
|
+
this.HighVersionSet = null;
|
|
12330
|
+
|
|
12331
|
+
/**
|
|
12332
|
+
* Whether to allow automatic deletion of consumer groups during minor version configuration.
|
|
12333
|
+
* @type {boolean || null}
|
|
12334
|
+
*/
|
|
12335
|
+
this.AllowAutoDeleteTimestamp = null;
|
|
12336
|
+
|
|
12337
|
+
}
|
|
12338
|
+
|
|
12339
|
+
/**
|
|
12340
|
+
* @private
|
|
12341
|
+
*/
|
|
12342
|
+
deserialize(params) {
|
|
12343
|
+
if (!params) {
|
|
12344
|
+
return;
|
|
12345
|
+
}
|
|
12346
|
+
this.KafkaVersion = 'KafkaVersion' in params ? params.KafkaVersion : null;
|
|
12347
|
+
this.CurBrokerVersion = 'CurBrokerVersion' in params ? params.CurBrokerVersion : null;
|
|
12348
|
+
|
|
12349
|
+
if (params.LatestBrokerVersion) {
|
|
12350
|
+
this.LatestBrokerVersion = new Array();
|
|
12351
|
+
for (let z in params.LatestBrokerVersion) {
|
|
12352
|
+
let obj = new LatestBrokerVersion();
|
|
12353
|
+
obj.deserialize(params.LatestBrokerVersion[z]);
|
|
12354
|
+
this.LatestBrokerVersion.push(obj);
|
|
12355
|
+
}
|
|
12356
|
+
}
|
|
12357
|
+
this.AllowUpgradeHighVersion = 'AllowUpgradeHighVersion' in params ? params.AllowUpgradeHighVersion : null;
|
|
12358
|
+
this.HighVersionSet = 'HighVersionSet' in params ? params.HighVersionSet : null;
|
|
12359
|
+
this.AllowAutoDeleteTimestamp = 'AllowAutoDeleteTimestamp' in params ? params.AllowAutoDeleteTimestamp : null;
|
|
12360
|
+
|
|
12361
|
+
}
|
|
12362
|
+
}
|
|
12363
|
+
|
|
11993
12364
|
/**
|
|
11994
12365
|
* Security group routing information returned results.
|
|
11995
12366
|
* @class
|
|
@@ -12034,24 +12405,24 @@ class SecurityGroupRouteResp extends AbstractModel {
|
|
|
12034
12405
|
}
|
|
12035
12406
|
|
|
12036
12407
|
/**
|
|
12037
|
-
*
|
|
12408
|
+
* List of the latest version information.
|
|
12038
12409
|
* @class
|
|
12039
12410
|
*/
|
|
12040
|
-
class
|
|
12411
|
+
class LatestBrokerVersion extends AbstractModel {
|
|
12041
12412
|
constructor(){
|
|
12042
12413
|
super();
|
|
12043
12414
|
|
|
12044
12415
|
/**
|
|
12045
|
-
*
|
|
12046
|
-
* @type {
|
|
12416
|
+
* CKafka cluster instance version.
|
|
12417
|
+
* @type {string || null}
|
|
12047
12418
|
*/
|
|
12048
|
-
this.
|
|
12419
|
+
this.KafkaVersion = null;
|
|
12049
12420
|
|
|
12050
12421
|
/**
|
|
12051
|
-
*
|
|
12052
|
-
* @type {
|
|
12422
|
+
* Broker version number.
|
|
12423
|
+
* @type {string || null}
|
|
12053
12424
|
*/
|
|
12054
|
-
this.
|
|
12425
|
+
this.BrokerVersion = null;
|
|
12055
12426
|
|
|
12056
12427
|
}
|
|
12057
12428
|
|
|
@@ -12062,8 +12433,8 @@ class Price extends AbstractModel {
|
|
|
12062
12433
|
if (!params) {
|
|
12063
12434
|
return;
|
|
12064
12435
|
}
|
|
12065
|
-
this.
|
|
12066
|
-
this.
|
|
12436
|
+
this.KafkaVersion = 'KafkaVersion' in params ? params.KafkaVersion : null;
|
|
12437
|
+
this.BrokerVersion = 'BrokerVersion' in params ? params.BrokerVersion : null;
|
|
12067
12438
|
|
|
12068
12439
|
}
|
|
12069
12440
|
}
|
|
@@ -12166,6 +12537,7 @@ module.exports = {
|
|
|
12166
12537
|
DeleteAclRuleRequest: DeleteAclRuleRequest,
|
|
12167
12538
|
ModifyInstanceAttributesConfig: ModifyInstanceAttributesConfig,
|
|
12168
12539
|
DescribeTaskStatusResponse: DescribeTaskStatusResponse,
|
|
12540
|
+
DescribeModifyTypeRequest: DescribeModifyTypeRequest,
|
|
12169
12541
|
OperateResponseData: OperateResponseData,
|
|
12170
12542
|
CreateUserResponse: CreateUserResponse,
|
|
12171
12543
|
DescribeRouteRequest: DescribeRouteRequest,
|
|
@@ -12193,8 +12565,10 @@ module.exports = {
|
|
|
12193
12565
|
CreateTopicRequest: CreateTopicRequest,
|
|
12194
12566
|
DeleteAclResponse: DeleteAclResponse,
|
|
12195
12567
|
DynamicRetentionTime: DynamicRetentionTime,
|
|
12568
|
+
DeleteRouteTriggerTimeRequest: DeleteRouteTriggerTimeRequest,
|
|
12196
12569
|
DescribeTopicSubscribeGroupRequest: DescribeTopicSubscribeGroupRequest,
|
|
12197
12570
|
DeleteInstancePreResponse: DeleteInstancePreResponse,
|
|
12571
|
+
DeleteGroupSubscribeTopicRequest: DeleteGroupSubscribeTopicRequest,
|
|
12198
12572
|
DatahubTopicResp: DatahubTopicResp,
|
|
12199
12573
|
FetchMessageByOffsetRequest: FetchMessageByOffsetRequest,
|
|
12200
12574
|
InquiryPublicNetworkParam: InquiryPublicNetworkParam,
|
|
@@ -12216,6 +12590,7 @@ module.exports = {
|
|
|
12216
12590
|
GroupInfoResponse: GroupInfoResponse,
|
|
12217
12591
|
GroupOffsetResponse: GroupOffsetResponse,
|
|
12218
12592
|
AclResponse: AclResponse,
|
|
12593
|
+
DescribeModifyTypeResponse: DescribeModifyTypeResponse,
|
|
12219
12594
|
ZoneResponse: ZoneResponse,
|
|
12220
12595
|
ModifyRoutineMaintenanceTaskRequest: ModifyRoutineMaintenanceTaskRequest,
|
|
12221
12596
|
Instance: Instance,
|
|
@@ -12239,7 +12614,7 @@ module.exports = {
|
|
|
12239
12614
|
UpgradeBrokerVersionResponse: UpgradeBrokerVersionResponse,
|
|
12240
12615
|
CreateInstancePostData: CreateInstancePostData,
|
|
12241
12616
|
DescribeGroupOffsetsRequest: DescribeGroupOffsetsRequest,
|
|
12242
|
-
|
|
12617
|
+
DescModifyType: DescModifyType,
|
|
12243
12618
|
GroupOffsetPartition: GroupOffsetPartition,
|
|
12244
12619
|
DescribeInstancesRequest: DescribeInstancesRequest,
|
|
12245
12620
|
InstanceAttributesResponse: InstanceAttributesResponse,
|
|
@@ -12259,6 +12634,7 @@ module.exports = {
|
|
|
12259
12634
|
Region: Region,
|
|
12260
12635
|
InstanceScalingDownResponse: InstanceScalingDownResponse,
|
|
12261
12636
|
CreateConsumerRequest: CreateConsumerRequest,
|
|
12637
|
+
DeleteGroupSubscribeTopicResponse: DeleteGroupSubscribeTopicResponse,
|
|
12262
12638
|
InquireCkafkaPriceResponse: InquireCkafkaPriceResponse,
|
|
12263
12639
|
CreateDatahubTopicResponse: CreateDatahubTopicResponse,
|
|
12264
12640
|
CreatePostPaidInstanceResponse: CreatePostPaidInstanceResponse,
|
|
@@ -12270,6 +12646,7 @@ module.exports = {
|
|
|
12270
12646
|
InquiryBasePrice: InquiryBasePrice,
|
|
12271
12647
|
DescribeCkafkaZoneResponse: DescribeCkafkaZoneResponse,
|
|
12272
12648
|
BatchModifyGroupOffsetsRequest: BatchModifyGroupOffsetsRequest,
|
|
12649
|
+
Price: Price,
|
|
12273
12650
|
ListCvmAndIpInfoRsp: ListCvmAndIpInfoRsp,
|
|
12274
12651
|
CreateRouteResponse: CreateRouteResponse,
|
|
12275
12652
|
InstanceResponse: InstanceResponse,
|
|
@@ -12314,8 +12691,9 @@ module.exports = {
|
|
|
12314
12691
|
DescribeTopicDetailResponse: DescribeTopicDetailResponse,
|
|
12315
12692
|
SubscribedInfo: SubscribedInfo,
|
|
12316
12693
|
AclRuleResp: AclRuleResp,
|
|
12694
|
+
InstanceVersion: InstanceVersion,
|
|
12317
12695
|
SecurityGroupRouteResp: SecurityGroupRouteResp,
|
|
12318
|
-
|
|
12696
|
+
LatestBrokerVersion: LatestBrokerVersion,
|
|
12319
12697
|
DescribeCkafkaVersionRequest: DescribeCkafkaVersionRequest,
|
|
12320
12698
|
|
|
12321
12699
|
}
|