tencentcloud-sdk-nodejs-intl-en 3.0.366 → 3.0.370

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/package.json +1 -1
  2. package/tencentcloud/apigateway/v20180808/apigateway_client.js +3 -2
  3. package/tencentcloud/apigateway/v20180808/models.js +105 -41
  4. package/tencentcloud/billing/v20180709/models.js +12 -11
  5. package/tencentcloud/cam/v20190116/cam_client.js +16 -1
  6. package/tencentcloud/cam/v20190116/models.js +264 -17
  7. package/tencentcloud/cbs/v20170312/models.js +15 -1
  8. package/tencentcloud/cdb/v20170320/cdb_client.js +1 -1
  9. package/tencentcloud/cdb/v20170320/models.js +21 -0
  10. package/tencentcloud/cdn/v20180606/models.js +54 -3
  11. package/tencentcloud/ckafka/v20190819/models.js +41 -3
  12. package/tencentcloud/common/sdk_version.js +1 -1
  13. package/tencentcloud/dbbrain/v20210527/dbbrain_client.js +30 -4
  14. package/tencentcloud/dbbrain/v20210527/models.js +309 -116
  15. package/tencentcloud/dcdb/v20180411/dcdb_client.js +14 -0
  16. package/tencentcloud/dcdb/v20180411/models.js +144 -7
  17. package/tencentcloud/emr/v20190103/emr_client.js +2 -0
  18. package/tencentcloud/emr/v20190103/models.js +109 -0
  19. package/tencentcloud/gaap/v20180529/gaap_client.js +1 -1
  20. package/tencentcloud/gaap/v20180529/models.js +50 -6
  21. package/tencentcloud/live/v20180801/live_client.js +29 -11
  22. package/tencentcloud/live/v20180801/models.js +200 -24
  23. package/tencentcloud/redis/v20180412/models.js +7 -0
  24. package/tencentcloud/redis/v20180412/redis_client.js +1 -1
  25. package/tencentcloud/ses/v20201002/models.js +610 -29
  26. package/tencentcloud/ses/v20201002/ses_client.js +157 -103
  27. package/tencentcloud/tke/v20180525/models.js +61 -0
@@ -1358,30 +1358,24 @@ class UpdateSAMLProviderRequest extends AbstractModel {
1358
1358
  }
1359
1359
 
1360
1360
  /**
1361
- * UpdateAssumeRolePolicy request structure.
1361
+ * Information on policies associated with the user via the user group.
1362
1362
  * @class
1363
1363
  */
1364
- class UpdateAssumeRolePolicyRequest extends AbstractModel {
1364
+ class AttachedUserPolicyGroupInfo extends AbstractModel {
1365
1365
  constructor(){
1366
1366
  super();
1367
1367
 
1368
1368
  /**
1369
- * Policy document
1370
- * @type {string || null}
1371
- */
1372
- this.PolicyDocument = null;
1373
-
1374
- /**
1375
- * Role ID, used to specify a role. Input either `RoleId` or `RoleName`
1376
- * @type {string || null}
1369
+ * Group ID.
1370
+ * @type {number || null}
1377
1371
  */
1378
- this.RoleId = null;
1372
+ this.GroupId = null;
1379
1373
 
1380
1374
  /**
1381
- * Role name, used to specify a role. Input either `RoleId` or `RoleName`
1375
+ * Group name.
1382
1376
  * @type {string || null}
1383
1377
  */
1384
- this.RoleName = null;
1378
+ this.GroupName = null;
1385
1379
 
1386
1380
  }
1387
1381
 
@@ -1392,9 +1386,8 @@ class UpdateAssumeRolePolicyRequest extends AbstractModel {
1392
1386
  if (!params) {
1393
1387
  return;
1394
1388
  }
1395
- this.PolicyDocument = 'PolicyDocument' in params ? params.PolicyDocument : null;
1396
- this.RoleId = 'RoleId' in params ? params.RoleId : null;
1397
- this.RoleName = 'RoleName' in params ? params.RoleName : null;
1389
+ this.GroupId = 'GroupId' in params ? params.GroupId : null;
1390
+ this.GroupName = 'GroupName' in params ? params.GroupName : null;
1398
1391
 
1399
1392
  }
1400
1393
  }
@@ -2069,6 +2062,56 @@ Note: this field may return `null`, indicating that no valid value can be obtain
2069
2062
  }
2070
2063
  }
2071
2064
 
2065
+ /**
2066
+ * ListAttachedUserAllPolicies response structure.
2067
+ * @class
2068
+ */
2069
+ class ListAttachedUserAllPoliciesResponse extends AbstractModel {
2070
+ constructor(){
2071
+ super();
2072
+
2073
+ /**
2074
+ * Policy list.
2075
+ * @type {Array.<AttachedUserPolicy> || null}
2076
+ */
2077
+ this.PolicyList = null;
2078
+
2079
+ /**
2080
+ * Total number of policies.
2081
+ * @type {number || null}
2082
+ */
2083
+ this.TotalNum = null;
2084
+
2085
+ /**
2086
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2087
+ * @type {string || null}
2088
+ */
2089
+ this.RequestId = null;
2090
+
2091
+ }
2092
+
2093
+ /**
2094
+ * @private
2095
+ */
2096
+ deserialize(params) {
2097
+ if (!params) {
2098
+ return;
2099
+ }
2100
+
2101
+ if (params.PolicyList) {
2102
+ this.PolicyList = new Array();
2103
+ for (let z in params.PolicyList) {
2104
+ let obj = new AttachedUserPolicy();
2105
+ obj.deserialize(params.PolicyList[z]);
2106
+ this.PolicyList.push(obj);
2107
+ }
2108
+ }
2109
+ this.TotalNum = 'TotalNum' in params ? params.TotalNum : null;
2110
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
2111
+
2112
+ }
2113
+ }
2114
+
2072
2115
  /**
2073
2116
  * DeleteGroup request structure.
2074
2117
  * @class
@@ -2589,6 +2632,48 @@ class AddUserRequest extends AbstractModel {
2589
2632
  }
2590
2633
  }
2591
2634
 
2635
+ /**
2636
+ * UpdateAssumeRolePolicy request structure.
2637
+ * @class
2638
+ */
2639
+ class UpdateAssumeRolePolicyRequest extends AbstractModel {
2640
+ constructor(){
2641
+ super();
2642
+
2643
+ /**
2644
+ * Policy document
2645
+ * @type {string || null}
2646
+ */
2647
+ this.PolicyDocument = null;
2648
+
2649
+ /**
2650
+ * Role ID, used to specify a role. Input either `RoleId` or `RoleName`
2651
+ * @type {string || null}
2652
+ */
2653
+ this.RoleId = null;
2654
+
2655
+ /**
2656
+ * Role name, used to specify a role. Input either `RoleId` or `RoleName`
2657
+ * @type {string || null}
2658
+ */
2659
+ this.RoleName = null;
2660
+
2661
+ }
2662
+
2663
+ /**
2664
+ * @private
2665
+ */
2666
+ deserialize(params) {
2667
+ if (!params) {
2668
+ return;
2669
+ }
2670
+ this.PolicyDocument = 'PolicyDocument' in params ? params.PolicyDocument : null;
2671
+ this.RoleId = 'RoleId' in params ? params.RoleId : null;
2672
+ this.RoleName = 'RoleName' in params ? params.RoleName : null;
2673
+
2674
+ }
2675
+ }
2676
+
2592
2677
  /**
2593
2678
  * Login and sensitive operation flag
2594
2679
  * @class
@@ -4393,6 +4478,69 @@ class CreatePolicyRequest extends AbstractModel {
4393
4478
  }
4394
4479
  }
4395
4480
 
4481
+ /**
4482
+ * ListAttachedUserAllPolicies request structure.
4483
+ * @class
4484
+ */
4485
+ class ListAttachedUserAllPoliciesRequest extends AbstractModel {
4486
+ constructor(){
4487
+ super();
4488
+
4489
+ /**
4490
+ * Target user ID.
4491
+ * @type {number || null}
4492
+ */
4493
+ this.TargetUin = null;
4494
+
4495
+ /**
4496
+ * The number of policies displayed on each page. Value range: 1-200.
4497
+ * @type {number || null}
4498
+ */
4499
+ this.Rp = null;
4500
+
4501
+ /**
4502
+ * Page number. Value range: 1-200.
4503
+ * @type {number || null}
4504
+ */
4505
+ this.Page = null;
4506
+
4507
+ /**
4508
+ * `0`: return policies that are directly associated and inherited from the user group; `1`: return policies that are directly associated; `2`: return policies inherited from the user group.
4509
+ * @type {number || null}
4510
+ */
4511
+ this.AttachType = null;
4512
+
4513
+ /**
4514
+ * Policy type.
4515
+ * @type {number || null}
4516
+ */
4517
+ this.StrategyType = null;
4518
+
4519
+ /**
4520
+ * Keyword for searching.
4521
+ * @type {string || null}
4522
+ */
4523
+ this.Keyword = null;
4524
+
4525
+ }
4526
+
4527
+ /**
4528
+ * @private
4529
+ */
4530
+ deserialize(params) {
4531
+ if (!params) {
4532
+ return;
4533
+ }
4534
+ this.TargetUin = 'TargetUin' in params ? params.TargetUin : null;
4535
+ this.Rp = 'Rp' in params ? params.Rp : null;
4536
+ this.Page = 'Page' in params ? params.Page : null;
4537
+ this.AttachType = 'AttachType' in params ? params.AttachType : null;
4538
+ this.StrategyType = 'StrategyType' in params ? params.StrategyType : null;
4539
+ this.Keyword = 'Keyword' in params ? params.Keyword : null;
4540
+
4541
+ }
4542
+ }
4543
+
4396
4544
  /**
4397
4545
  * DeletePolicyVersion request structure.
4398
4546
  * @class
@@ -5331,6 +5479,101 @@ class CreateRoleRequest extends AbstractModel {
5331
5479
  }
5332
5480
  }
5333
5481
 
5482
+ /**
5483
+ * Details of policies associated with the user
5484
+ * @class
5485
+ */
5486
+ class AttachedUserPolicy extends AbstractModel {
5487
+ constructor(){
5488
+ super();
5489
+
5490
+ /**
5491
+ * Policy ID.
5492
+ * @type {string || null}
5493
+ */
5494
+ this.PolicyId = null;
5495
+
5496
+ /**
5497
+ * Policy name.
5498
+ * @type {string || null}
5499
+ */
5500
+ this.PolicyName = null;
5501
+
5502
+ /**
5503
+ * Policy description.
5504
+ * @type {string || null}
5505
+ */
5506
+ this.Description = null;
5507
+
5508
+ /**
5509
+ * Creation time.
5510
+ * @type {string || null}
5511
+ */
5512
+ this.AddTime = null;
5513
+
5514
+ /**
5515
+ * Policy type (`1`: custom policy; `2`: preset policy).
5516
+ * @type {string || null}
5517
+ */
5518
+ this.StrategyType = null;
5519
+
5520
+ /**
5521
+ * Creation mode (`1`: create by product feature or project permission; other values: create by policy syntax).
5522
+ * @type {string || null}
5523
+ */
5524
+ this.CreateMode = null;
5525
+
5526
+ /**
5527
+ * Information on policies inherited from the user group.
5528
+ Note: this field may return `null`, indicating that no valid values can be obtained.
5529
+ * @type {Array.<AttachedUserPolicyGroupInfo> || null}
5530
+ */
5531
+ this.Groups = null;
5532
+
5533
+ /**
5534
+ * Whether the product has been deprecated (`0`: no; `1`: yes).
5535
+ Note: this field may return `null`, indicating that no valid values can be obtained.
5536
+ * @type {number || null}
5537
+ */
5538
+ this.Deactived = null;
5539
+
5540
+ /**
5541
+ * List of deprecated products.
5542
+ Note: this field may return `null`, indicating that no valid values can be obtained.
5543
+ * @type {Array.<string> || null}
5544
+ */
5545
+ this.DeactivedDetail = null;
5546
+
5547
+ }
5548
+
5549
+ /**
5550
+ * @private
5551
+ */
5552
+ deserialize(params) {
5553
+ if (!params) {
5554
+ return;
5555
+ }
5556
+ this.PolicyId = 'PolicyId' in params ? params.PolicyId : null;
5557
+ this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
5558
+ this.Description = 'Description' in params ? params.Description : null;
5559
+ this.AddTime = 'AddTime' in params ? params.AddTime : null;
5560
+ this.StrategyType = 'StrategyType' in params ? params.StrategyType : null;
5561
+ this.CreateMode = 'CreateMode' in params ? params.CreateMode : null;
5562
+
5563
+ if (params.Groups) {
5564
+ this.Groups = new Array();
5565
+ for (let z in params.Groups) {
5566
+ let obj = new AttachedUserPolicyGroupInfo();
5567
+ obj.deserialize(params.Groups[z]);
5568
+ this.Groups.push(obj);
5569
+ }
5570
+ }
5571
+ this.Deactived = 'Deactived' in params ? params.Deactived : null;
5572
+ this.DeactivedDetail = 'DeactivedDetail' in params ? params.DeactivedDetail : null;
5573
+
5574
+ }
5575
+ }
5576
+
5334
5577
  /**
5335
5578
  * DeleteServiceLinkedRole response structure.
5336
5579
  * @class
@@ -6558,7 +6801,7 @@ module.exports = {
6558
6801
  ListGroupsRequest: ListGroupsRequest,
6559
6802
  DeletePolicyVersionResponse: DeletePolicyVersionResponse,
6560
6803
  UpdateSAMLProviderRequest: UpdateSAMLProviderRequest,
6561
- UpdateAssumeRolePolicyRequest: UpdateAssumeRolePolicyRequest,
6804
+ AttachedUserPolicyGroupInfo: AttachedUserPolicyGroupInfo,
6562
6805
  ListGroupsForUserResponse: ListGroupsForUserResponse,
6563
6806
  ListUsersForGroupRequest: ListUsersForGroupRequest,
6564
6807
  RemoveUserFromGroupRequest: RemoveUserFromGroupRequest,
@@ -6573,6 +6816,7 @@ module.exports = {
6573
6816
  DescribeSafeAuthFlagResponse: DescribeSafeAuthFlagResponse,
6574
6817
  CreatePolicyVersionRequest: CreatePolicyVersionRequest,
6575
6818
  SecretIdLastUsed: SecretIdLastUsed,
6819
+ ListAttachedUserAllPoliciesResponse: ListAttachedUserAllPoliciesResponse,
6576
6820
  DeleteGroupRequest: DeleteGroupRequest,
6577
6821
  GetUserResponse: GetUserResponse,
6578
6822
  DeleteUserResponse: DeleteUserResponse,
@@ -6582,6 +6826,7 @@ module.exports = {
6582
6826
  DeletePolicyRequest: DeletePolicyRequest,
6583
6827
  GroupInfo: GroupInfo,
6584
6828
  AddUserRequest: AddUserRequest,
6829
+ UpdateAssumeRolePolicyRequest: UpdateAssumeRolePolicyRequest,
6585
6830
  LoginActionFlag: LoginActionFlag,
6586
6831
  DeleteRoleRequest: DeleteRoleRequest,
6587
6832
  UpdateRoleConsoleLoginRequest: UpdateRoleConsoleLoginRequest,
@@ -6626,6 +6871,7 @@ module.exports = {
6626
6871
  GetServiceLinkedRoleDeletionStatusRequest: GetServiceLinkedRoleDeletionStatusRequest,
6627
6872
  DetachGroupPolicyResponse: DetachGroupPolicyResponse,
6628
6873
  CreatePolicyRequest: CreatePolicyRequest,
6874
+ ListAttachedUserAllPoliciesRequest: ListAttachedUserAllPoliciesRequest,
6629
6875
  DeletePolicyVersionRequest: DeletePolicyVersionRequest,
6630
6876
  CreateUserSAMLConfigRequest: CreateUserSAMLConfigRequest,
6631
6877
  UpdateGroupRequest: UpdateGroupRequest,
@@ -6649,6 +6895,7 @@ module.exports = {
6649
6895
  DetachUserPolicyResponse: DetachUserPolicyResponse,
6650
6896
  GetRoleResponse: GetRoleResponse,
6651
6897
  CreateRoleRequest: CreateRoleRequest,
6898
+ AttachedUserPolicy: AttachedUserPolicy,
6652
6899
  DeleteServiceLinkedRoleResponse: DeleteServiceLinkedRoleResponse,
6653
6900
  GetPolicyResponse: GetPolicyResponse,
6654
6901
  DescribeSafeAuthFlagRequest: DescribeSafeAuthFlagRequest,
@@ -419,6 +419,12 @@ class TerminateDisksRequest extends AbstractModel {
419
419
  */
420
420
  this.DiskIds = null;
421
421
 
422
+ /**
423
+ * Delete the associated non-permanently reserved snapshots upon deletion of the source cloud disk. `0`: No (default). `1`: Yes. To check whether a snapshot is permanently reserved, refer to the `IsPermanent` field returned by the `DescribeSnapshots` API.
424
+ * @type {number || null}
425
+ */
426
+ this.DeleteSnapshot = null;
427
+
422
428
  }
423
429
 
424
430
  /**
@@ -429,6 +435,7 @@ class TerminateDisksRequest extends AbstractModel {
429
435
  return;
430
436
  }
431
437
  this.DiskIds = 'DiskIds' in params ? params.DiskIds : null;
438
+ this.DeleteSnapshot = 'DeleteSnapshot' in params ? params.DeleteSnapshot : null;
432
439
 
433
440
  }
434
441
  }
@@ -3089,7 +3096,7 @@ class CreateSnapshotRequest extends AbstractModel {
3089
3096
  this.SnapshotName = null;
3090
3097
 
3091
3098
  /**
3092
- * Expiration time of the snapshot. The snapshot will be automatically deleted upon expiration.
3099
+ * Expiration time of the snapshot. It must be in UTC ISO-8601 format, eg. 2022-01-08T09:47:55+00:00. The snapshot will be automatically deleted when it expires
3093
3100
  * @type {string || null}
3094
3101
  */
3095
3102
  this.Deadline = null;
@@ -3746,6 +3753,12 @@ Note: This field may return null, indicating that no valid value was found.
3746
3753
  */
3747
3754
  this.CreateTime = null;
3748
3755
 
3756
+ /**
3757
+ * Delete the associated non-permanently reserved snapshots upon deletion of the source cloud disk. `0`: No (default). `1`: Yes. To check whether a snapshot is permanently reserved, refer to the `IsPermanent` field returned by the `DescribeSnapshots` API.
3758
+ * @type {number || null}
3759
+ */
3760
+ this.DeleteSnapshot = null;
3761
+
3749
3762
  }
3750
3763
 
3751
3764
  /**
@@ -3803,6 +3816,7 @@ Note: This field may return null, indicating that no valid value was found.
3803
3816
  this.ReturnFailCode = 'ReturnFailCode' in params ? params.ReturnFailCode : null;
3804
3817
  this.Shareable = 'Shareable' in params ? params.Shareable : null;
3805
3818
  this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
3819
+ this.DeleteSnapshot = 'DeleteSnapshot' in params ? params.DeleteSnapshot : null;
3806
3820
 
3807
3821
  }
3808
3822
  }
@@ -1157,7 +1157,7 @@ Note that the files for a data import task must be uploaded to Tencent Cloud in
1157
1157
  }
1158
1158
 
1159
1159
  /**
1160
- * This API is used to query the list of user-imported SQL files.
1160
+ * This API is used to query the list of SQL files imported by users. The common request parameter `Region` must be `ap-shanghai`.
1161
1161
  * @param {DescribeUploadedFilesRequest} req
1162
1162
  * @param {function(string, DescribeUploadedFilesResponse):void} cb
1163
1163
  * @public
@@ -2050,6 +2050,12 @@ class DescribeParamTemplatesRequest extends AbstractModel {
2050
2050
  constructor(){
2051
2051
  super();
2052
2052
 
2053
+ /**
2054
+ *
2055
+ * @type {Array.<string> || null}
2056
+ */
2057
+ this.EngineVersions = null;
2058
+
2053
2059
  }
2054
2060
 
2055
2061
  /**
@@ -2059,6 +2065,7 @@ class DescribeParamTemplatesRequest extends AbstractModel {
2059
2065
  if (!params) {
2060
2066
  return;
2061
2067
  }
2068
+ this.EngineVersions = 'EngineVersions' in params ? params.EngineVersions : null;
2062
2069
 
2063
2070
  }
2064
2071
  }
@@ -4097,6 +4104,12 @@ class CreateDBInstanceHourRequest extends AbstractModel {
4097
4104
  */
4098
4105
  this.CageId = null;
4099
4106
 
4107
+ /**
4108
+ * Type of the default parameter template. Valid values: `HIGH_STABILITY` (high-stability template), `HIGH_PERFORMANCE` (high-performance template).
4109
+ * @type {string || null}
4110
+ */
4111
+ this.ParamTemplateType = null;
4112
+
4100
4113
  /**
4101
4114
  * The array of alarm policy names, such as ["policy-uyoee9wg"]. If the `AlarmPolicyList` parameter is specified, this parameter is invalid.
4102
4115
  * @type {Array.<string> || null}
@@ -4171,6 +4184,7 @@ class CreateDBInstanceHourRequest extends AbstractModel {
4171
4184
  this.Cpu = 'Cpu' in params ? params.Cpu : null;
4172
4185
  this.AutoSyncFlag = 'AutoSyncFlag' in params ? params.AutoSyncFlag : null;
4173
4186
  this.CageId = 'CageId' in params ? params.CageId : null;
4187
+ this.ParamTemplateType = 'ParamTemplateType' in params ? params.ParamTemplateType : null;
4174
4188
  this.AlarmPolicyIdList = 'AlarmPolicyIdList' in params ? params.AlarmPolicyIdList : null;
4175
4189
  this.DryRun = 'DryRun' in params ? params.DryRun : null;
4176
4190
 
@@ -4620,6 +4634,12 @@ which is left empty by default. Specify this parameter when cloning a strong syn
4620
4634
  */
4621
4635
  this.DryRun = null;
4622
4636
 
4637
+ /**
4638
+ * Financial cage ID.
4639
+ * @type {string || null}
4640
+ */
4641
+ this.CageId = null;
4642
+
4623
4643
  }
4624
4644
 
4625
4645
  /**
@@ -4656,6 +4676,7 @@ which is left empty by default. Specify this parameter when cloning a strong syn
4656
4676
  this.InstanceNodes = 'InstanceNodes' in params ? params.InstanceNodes : null;
4657
4677
  this.DeployGroupId = 'DeployGroupId' in params ? params.DeployGroupId : null;
4658
4678
  this.DryRun = 'DryRun' in params ? params.DryRun : null;
4679
+ this.CageId = 'CageId' in params ? params.CageId : null;
4659
4680
 
4660
4681
  }
4661
4682
  }
@@ -4386,6 +4386,20 @@ Note: this field may return null, indicating that no valid values can be obtaine
4386
4386
  */
4387
4387
  this.VideoSeek = null;
4388
4388
 
4389
+ /**
4390
+ * Private access for S3 origin
4391
+ Note: this field may return `null`, indicating that no valid values can be obtained.
4392
+ * @type {AwsPrivateAccess || null}
4393
+ */
4394
+ this.AwsPrivateAccess = null;
4395
+
4396
+ /**
4397
+ * Private access for OSS origin
4398
+ Note: this field may return `null`, indicating that no valid values can be obtained.
4399
+ * @type {OssPrivateAccess || null}
4400
+ */
4401
+ this.OssPrivateAccess = null;
4402
+
4389
4403
  }
4390
4404
 
4391
4405
  /**
@@ -4535,6 +4549,18 @@ Note: this field may return null, indicating that no valid values can be obtaine
4535
4549
  this.VideoSeek = obj;
4536
4550
  }
4537
4551
 
4552
+ if (params.AwsPrivateAccess) {
4553
+ let obj = new AwsPrivateAccess();
4554
+ obj.deserialize(params.AwsPrivateAccess)
4555
+ this.AwsPrivateAccess = obj;
4556
+ }
4557
+
4558
+ if (params.OssPrivateAccess) {
4559
+ let obj = new OssPrivateAccess();
4560
+ obj.deserialize(params.OssPrivateAccess)
4561
+ this.OssPrivateAccess = obj;
4562
+ }
4563
+
4538
4564
  }
4539
4565
  }
4540
4566
 
@@ -6959,9 +6985,8 @@ class ServerCert extends AbstractModel {
6959
6985
  super();
6960
6986
 
6961
6987
  /**
6962
- * Server certificate ID
6963
- This is auto-generated when the certificate is being hosted by the SSL Certificate Service
6964
- Note: this field may return null, indicating that no valid values can be obtained.
6988
+ * Server certificate ID, which is auto-generated when the certificate is added to Tencent Cloud SSL Certificates
6989
+ Note: this field may return `null`, indicating that no valid values can be obtained.
6965
6990
  * @type {string || null}
6966
6991
  */
6967
6992
  this.CertId = null;
@@ -9353,6 +9378,20 @@ Note: this field may return null, indicating that no valid values can be obtaine
9353
9378
  */
9354
9379
  this.VideoSeek = null;
9355
9380
 
9381
+ /**
9382
+ * Private access for S3 origin
9383
+ Note: this field may return `null`, indicating that no valid values can be obtained.
9384
+ * @type {AwsPrivateAccess || null}
9385
+ */
9386
+ this.AwsPrivateAccess = null;
9387
+
9388
+ /**
9389
+ * Private access for OSS origin
9390
+ Note: this field may return `null`, indicating that no valid values can be obtained.
9391
+ * @type {OssPrivateAccess || null}
9392
+ */
9393
+ this.OssPrivateAccess = null;
9394
+
9356
9395
  }
9357
9396
 
9358
9397
  /**
@@ -9502,6 +9541,18 @@ Note: this field may return null, indicating that no valid values can be obtaine
9502
9541
  this.VideoSeek = obj;
9503
9542
  }
9504
9543
 
9544
+ if (params.AwsPrivateAccess) {
9545
+ let obj = new AwsPrivateAccess();
9546
+ obj.deserialize(params.AwsPrivateAccess)
9547
+ this.AwsPrivateAccess = obj;
9548
+ }
9549
+
9550
+ if (params.OssPrivateAccess) {
9551
+ let obj = new OssPrivateAccess();
9552
+ obj.deserialize(params.OssPrivateAccess)
9553
+ this.OssPrivateAccess = obj;
9554
+ }
9555
+
9505
9556
  }
9506
9557
  }
9507
9558
 
@@ -4761,6 +4761,12 @@ class DescribeInstancesRequest extends AbstractModel {
4761
4761
  */
4762
4762
  this.TagKey = null;
4763
4763
 
4764
+ /**
4765
+ * VPC ID.
4766
+ * @type {string || null}
4767
+ */
4768
+ this.VpcId = null;
4769
+
4764
4770
  }
4765
4771
 
4766
4772
  /**
@@ -4776,6 +4782,7 @@ class DescribeInstancesRequest extends AbstractModel {
4776
4782
  this.Offset = 'Offset' in params ? params.Offset : null;
4777
4783
  this.Limit = 'Limit' in params ? params.Limit : null;
4778
4784
  this.TagKey = 'TagKey' in params ? params.TagKey : null;
4785
+ this.VpcId = 'VpcId' in params ? params.VpcId : null;
4779
4786
 
4780
4787
  }
4781
4788
  }
@@ -5369,13 +5376,13 @@ class DescribeInstancesDetailRequest extends AbstractModel {
5369
5376
  this.Status = null;
5370
5377
 
5371
5378
  /**
5372
- * Offset. If this parameter is left empty, 0 will be used by default
5379
+ * Offset. If this parameter is left empty, `0` will be used by default.
5373
5380
  * @type {number || null}
5374
5381
  */
5375
5382
  this.Offset = null;
5376
5383
 
5377
5384
  /**
5378
- * Number of results to be returned. If this parameter is left empty, 10 will be used by default. The maximum value is 20
5385
+ * Number of returned results. If this parameter is left empty, `10` will be used by default. The maximum value is `20`.
5379
5386
  * @type {number || null}
5380
5387
  */
5381
5388
  this.Limit = null;
@@ -5387,11 +5394,17 @@ class DescribeInstancesDetailRequest extends AbstractModel {
5387
5394
  this.TagKey = null;
5388
5395
 
5389
5396
  /**
5390
- * Filter
5397
+ * Filter.
5391
5398
  * @type {Array.<Filter> || null}
5392
5399
  */
5393
5400
  this.Filters = null;
5394
5401
 
5402
+ /**
5403
+ * This parameter has been deprecated and replaced with `InstanceIdList`.
5404
+ * @type {string || null}
5405
+ */
5406
+ this.InstanceIds = null;
5407
+
5395
5408
  }
5396
5409
 
5397
5410
  /**
@@ -5416,6 +5429,7 @@ class DescribeInstancesDetailRequest extends AbstractModel {
5416
5429
  this.Filters.push(obj);
5417
5430
  }
5418
5431
  }
5432
+ this.InstanceIds = 'InstanceIds' in params ? params.InstanceIds : null;
5419
5433
 
5420
5434
  }
5421
5435
  }
@@ -7246,6 +7260,27 @@ Note: `null` may be returned for this field, indicating that no valid values can
7246
7260
  */
7247
7261
  this.RebalanceTime = null;
7248
7262
 
7263
+ /**
7264
+ * Number of partitions in the current instance.
7265
+ Note: this field may return `null`, indicating that no valid values can be obtained.
7266
+ * @type {number || null}
7267
+ */
7268
+ this.PartitionNumber = null;
7269
+
7270
+ /**
7271
+ * Public network bandwidth type.
7272
+ Note: this field may return `null`, indicating that no valid values can be obtained.
7273
+ * @type {string || null}
7274
+ */
7275
+ this.PublicNetworkChargeType = null;
7276
+
7277
+ /**
7278
+ * Public network bandwidth.
7279
+ Note: this field may return `null`, indicating that no valid values can be obtained.
7280
+ * @type {number || null}
7281
+ */
7282
+ this.PublicNetwork = null;
7283
+
7249
7284
  }
7250
7285
 
7251
7286
  /**
@@ -7298,6 +7333,9 @@ Note: `null` may be returned for this field, indicating that no valid values can
7298
7333
  this.MaxTopicNumber = 'MaxTopicNumber' in params ? params.MaxTopicNumber : null;
7299
7334
  this.MaxPartitionNumber = 'MaxPartitionNumber' in params ? params.MaxPartitionNumber : null;
7300
7335
  this.RebalanceTime = 'RebalanceTime' in params ? params.RebalanceTime : null;
7336
+ this.PartitionNumber = 'PartitionNumber' in params ? params.PartitionNumber : null;
7337
+ this.PublicNetworkChargeType = 'PublicNetworkChargeType' in params ? params.PublicNetworkChargeType : null;
7338
+ this.PublicNetwork = 'PublicNetwork' in params ? params.PublicNetwork : null;
7301
7339
 
7302
7340
  }
7303
7341
  }
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.366";
1
+ const sdkVersion = "3.0.370";
2
2
  module.exports = sdkVersion