tencentcloud-sdk-nodejs-intl-en 3.0.613 → 3.0.615

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.613",
3
+ "version": "3.0.615",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -33,6 +33,7 @@ const CloneLoadBalancerRequest = models.CloneLoadBalancerRequest;
33
33
  const DisassociateTargetGroupsResponse = models.DisassociateTargetGroupsResponse;
34
34
  const SetLoadBalancerClsLogResponse = models.SetLoadBalancerClsLogResponse;
35
35
  const DescribeLoadBalancerTrafficResponse = models.DescribeLoadBalancerTrafficResponse;
36
+ const MultiCertInfo = models.MultiCertInfo;
36
37
  const ModifyRuleRequest = models.ModifyRuleRequest;
37
38
  const DescribeCustomizedConfigListResponse = models.DescribeCustomizedConfigListResponse;
38
39
  const DescribeBlockIPListResponse = models.DescribeBlockIPListResponse;
@@ -108,6 +109,7 @@ const DescribeLoadBalancersDetailRequest = models.DescribeLoadBalancersDetailReq
108
109
  const TargetGroupBackend = models.TargetGroupBackend;
109
110
  const DescribeClassicalLBByInstanceIdRequest = models.DescribeClassicalLBByInstanceIdRequest;
110
111
  const DescribeResourcesResponse = models.DescribeResourcesResponse;
112
+ const ModifyTargetGroupInstancesWeightRequest = models.ModifyTargetGroupInstancesWeightRequest;
111
113
  const ManualRewriteResponse = models.ManualRewriteResponse;
112
114
  const ModifyBlockIPListRequest = models.ModifyBlockIPListRequest;
113
115
  const ModifyBlockIPListResponse = models.ModifyBlockIPListResponse;
@@ -139,7 +141,7 @@ const DeregisterTargetGroupInstancesRequest = models.DeregisterTargetGroupInstan
139
141
  const ManualRewriteRequest = models.ManualRewriteRequest;
140
142
  const ModifyListenerResponse = models.ModifyListenerResponse;
141
143
  const DescribeTargetHealthResponse = models.DescribeTargetHealthResponse;
142
- const DescribeTargetGroupInstancesResponse = models.DescribeTargetGroupInstancesResponse;
144
+ const CertInfo = models.CertInfo;
143
145
  const CreateTargetGroupRequest = models.CreateTargetGroupRequest;
144
146
  const ClusterItem = models.ClusterItem;
145
147
  const BindDetailItem = models.BindDetailItem;
@@ -176,7 +178,7 @@ const ModifyDomainAttributesRequest = models.ModifyDomainAttributesRequest;
176
178
  const DeregisterTargetsRequest = models.DeregisterTargetsRequest;
177
179
  const InternetAccessible = models.InternetAccessible;
178
180
  const CreateLoadBalancerSnatIpsRequest = models.CreateLoadBalancerSnatIpsRequest;
179
- const ModifyTargetGroupInstancesWeightRequest = models.ModifyTargetGroupInstancesWeightRequest;
181
+ const DescribeTargetGroupInstancesResponse = models.DescribeTargetGroupInstancesResponse;
180
182
  const DescribeQuotaResponse = models.DescribeQuotaResponse;
181
183
  const DeleteTargetGroupsResponse = models.DeleteTargetGroupsResponse;
182
184
  const ModifyTargetGroupInstancesPortRequest = models.ModifyTargetGroupInstancesPortRequest;
@@ -1055,6 +1055,49 @@ Note: This field may return `null`, indicating that no valid values can be obtai
1055
1055
  }
1056
1056
  }
1057
1057
 
1058
+ /**
1059
+ * Information of multiple certificates bound with the load balancer listener or rule.
1060
+ * @class
1061
+ */
1062
+ class MultiCertInfo extends AbstractModel {
1063
+ constructor(){
1064
+ super();
1065
+
1066
+ /**
1067
+ * Authentication type. Values: `UNIDIRECTIONAL` (one-way authentication), `MUTUAL` (two-way authentication)
1068
+ * @type {string || null}
1069
+ */
1070
+ this.SSLMode = null;
1071
+
1072
+ /**
1073
+ * List of listener or rule certificates. One-way and two-way authentication are supported. Only one certificate can be specified for one algorithm. If `SSLMode` is `MUTUAL` (two-way authentication), at least one CA certificate is required.
1074
+ * @type {Array.<CertInfo> || null}
1075
+ */
1076
+ this.CertList = null;
1077
+
1078
+ }
1079
+
1080
+ /**
1081
+ * @private
1082
+ */
1083
+ deserialize(params) {
1084
+ if (!params) {
1085
+ return;
1086
+ }
1087
+ this.SSLMode = 'SSLMode' in params ? params.SSLMode : null;
1088
+
1089
+ if (params.CertList) {
1090
+ this.CertList = new Array();
1091
+ for (let z in params.CertList) {
1092
+ let obj = new CertInfo();
1093
+ obj.deserialize(params.CertList[z]);
1094
+ this.CertList.push(obj);
1095
+ }
1096
+ }
1097
+
1098
+ }
1099
+ }
1100
+
1058
1101
  /**
1059
1102
  * ModifyRule request structure.
1060
1103
  * @class
@@ -4061,7 +4104,7 @@ class ModifyListenerRequest extends AbstractModel {
4061
4104
  this.HealthCheck = null;
4062
4105
 
4063
4106
  /**
4064
- * Certificate information. This parameter is applicable only to HTTPS and TCP_SSL listeners.
4107
+ * Certificate information. This parameter is only applicable to HTTPS/TCP_SSL listeners. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
4065
4108
  * @type {CertificateInput || null}
4066
4109
  */
4067
4110
  this.Certificate = null;
@@ -4103,6 +4146,24 @@ They represent weighted round robin and least connections, respectively. Default
4103
4146
  */
4104
4147
  this.SessionType = null;
4105
4148
 
4149
+ /**
4150
+ * Certificate information. You can specify multiple server-side certificates with different algorithm types. This parameter is only applicable to HTTPS listeners with the SNI feature not enabled. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
4151
+ * @type {MultiCertInfo || null}
4152
+ */
4153
+ this.MultiCertInfo = null;
4154
+
4155
+ /**
4156
+ *
4157
+ * @type {number || null}
4158
+ */
4159
+ this.MaxConn = null;
4160
+
4161
+ /**
4162
+ *
4163
+ * @type {number || null}
4164
+ */
4165
+ this.MaxCps = null;
4166
+
4106
4167
  }
4107
4168
 
4108
4169
  /**
@@ -4135,6 +4196,14 @@ They represent weighted round robin and least connections, respectively. Default
4135
4196
  this.DeregisterTargetRst = 'DeregisterTargetRst' in params ? params.DeregisterTargetRst : null;
4136
4197
  this.SessionType = 'SessionType' in params ? params.SessionType : null;
4137
4198
 
4199
+ if (params.MultiCertInfo) {
4200
+ let obj = new MultiCertInfo();
4201
+ obj.deserialize(params.MultiCertInfo)
4202
+ this.MultiCertInfo = obj;
4203
+ }
4204
+ this.MaxConn = 'MaxConn' in params ? params.MaxConn : null;
4205
+ this.MaxCps = 'MaxCps' in params ? params.MaxCps : null;
4206
+
4138
4207
  }
4139
4208
  }
4140
4209
 
@@ -4943,6 +5012,49 @@ class DescribeResourcesResponse extends AbstractModel {
4943
5012
  }
4944
5013
  }
4945
5014
 
5015
+ /**
5016
+ * ModifyTargetGroupInstancesWeight request structure.
5017
+ * @class
5018
+ */
5019
+ class ModifyTargetGroupInstancesWeightRequest extends AbstractModel {
5020
+ constructor(){
5021
+ super();
5022
+
5023
+ /**
5024
+ * Target group ID
5025
+ * @type {string || null}
5026
+ */
5027
+ this.TargetGroupId = null;
5028
+
5029
+ /**
5030
+ * Array of servers for which to modify weights
5031
+ * @type {Array.<TargetGroupInstance> || null}
5032
+ */
5033
+ this.TargetGroupInstances = null;
5034
+
5035
+ }
5036
+
5037
+ /**
5038
+ * @private
5039
+ */
5040
+ deserialize(params) {
5041
+ if (!params) {
5042
+ return;
5043
+ }
5044
+ this.TargetGroupId = 'TargetGroupId' in params ? params.TargetGroupId : null;
5045
+
5046
+ if (params.TargetGroupInstances) {
5047
+ this.TargetGroupInstances = new Array();
5048
+ for (let z in params.TargetGroupInstances) {
5049
+ let obj = new TargetGroupInstance();
5050
+ obj.deserialize(params.TargetGroupInstances[z]);
5051
+ this.TargetGroupInstances.push(obj);
5052
+ }
5053
+ }
5054
+
5055
+ }
5056
+ }
5057
+
4946
5058
  /**
4947
5059
  * ManualRewrite response structure.
4948
5060
  * @class
@@ -6550,36 +6662,36 @@ Note: This field may return `null`, indicating that no valid values can be obtai
6550
6662
  }
6551
6663
 
6552
6664
  /**
6553
- * DescribeTargetGroupInstances response structure.
6665
+ * Certificate information
6554
6666
  * @class
6555
6667
  */
6556
- class DescribeTargetGroupInstancesResponse extends AbstractModel {
6668
+ class CertInfo extends AbstractModel {
6557
6669
  constructor(){
6558
6670
  super();
6559
6671
 
6560
6672
  /**
6561
- * Number of results returned for the current query
6562
- * @type {number || null}
6673
+ * ID of the certificate. If it's not specified, `CertContent` and `CertKey` are required. For a server certificate, you also need to specify `CertName`.
6674
+ * @type {string || null}
6563
6675
  */
6564
- this.TotalCount = null;
6676
+ this.CertId = null;
6565
6677
 
6566
6678
  /**
6567
- * Information of the bound server
6568
- * @type {Array.<TargetGroupBackend> || null}
6679
+ * Name of the uploaded certificate. It's required if `CertId` is not specified.
6680
+ * @type {string || null}
6569
6681
  */
6570
- this.TargetGroupInstanceSet = null;
6682
+ this.CertName = null;
6571
6683
 
6572
6684
  /**
6573
- * The actual total number of bound instances, which is not affected by the setting of `Limit`, `Offset` and the CAM permissions.
6574
- * @type {number || null}
6685
+ * Public key of the uploaded certificate. It's required if `CertId` is not specified.
6686
+ * @type {string || null}
6575
6687
  */
6576
- this.RealCount = null;
6688
+ this.CertContent = null;
6577
6689
 
6578
6690
  /**
6579
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
6691
+ * Private key of the uploaded server certificate. It's required if `CertId` is not specified.
6580
6692
  * @type {string || null}
6581
6693
  */
6582
- this.RequestId = null;
6694
+ this.CertKey = null;
6583
6695
 
6584
6696
  }
6585
6697
 
@@ -6590,18 +6702,10 @@ class DescribeTargetGroupInstancesResponse extends AbstractModel {
6590
6702
  if (!params) {
6591
6703
  return;
6592
6704
  }
6593
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
6594
-
6595
- if (params.TargetGroupInstanceSet) {
6596
- this.TargetGroupInstanceSet = new Array();
6597
- for (let z in params.TargetGroupInstanceSet) {
6598
- let obj = new TargetGroupBackend();
6599
- obj.deserialize(params.TargetGroupInstanceSet[z]);
6600
- this.TargetGroupInstanceSet.push(obj);
6601
- }
6602
- }
6603
- this.RealCount = 'RealCount' in params ? params.RealCount : null;
6604
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
6705
+ this.CertId = 'CertId' in params ? params.CertId : null;
6706
+ this.CertName = 'CertName' in params ? params.CertName : null;
6707
+ this.CertContent = 'CertContent' in params ? params.CertContent : null;
6708
+ this.CertKey = 'CertKey' in params ? params.CertKey : null;
6605
6709
 
6606
6710
  }
6607
6711
  }
@@ -6838,7 +6942,7 @@ class CreateListenerRequest extends AbstractModel {
6838
6942
  this.HealthCheck = null;
6839
6943
 
6840
6944
  /**
6841
- * Certificate information. This parameter is applicable only to TCP_SSL listeners and HTTPS listeners with the SNI feature not enabled.
6945
+ * Certificate information. This parameter is only applicable to TCP_SSL listeners and HTTPS listeners with the SNI feature not enabled. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
6842
6946
  * @type {CertificateInput || null}
6843
6947
  */
6844
6948
  this.Certificate = null;
@@ -6892,6 +6996,24 @@ They represent weighted round robin and least connections, respectively. Default
6892
6996
  */
6893
6997
  this.DeregisterTargetRst = null;
6894
6998
 
6999
+ /**
7000
+ * Certificate information. You can specify multiple server-side certificates with different algorithm types. This parameter is only applicable to HTTPS listeners with the SNI feature not enabled. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
7001
+ * @type {MultiCertInfo || null}
7002
+ */
7003
+ this.MultiCertInfo = null;
7004
+
7005
+ /**
7006
+ *
7007
+ * @type {number || null}
7008
+ */
7009
+ this.MaxConn = null;
7010
+
7011
+ /**
7012
+ *
7013
+ * @type {number || null}
7014
+ */
7015
+ this.MaxCps = null;
7016
+
6895
7017
  }
6896
7018
 
6897
7019
  /**
@@ -6926,6 +7048,14 @@ They represent weighted round robin and least connections, respectively. Default
6926
7048
  this.EndPort = 'EndPort' in params ? params.EndPort : null;
6927
7049
  this.DeregisterTargetRst = 'DeregisterTargetRst' in params ? params.DeregisterTargetRst : null;
6928
7050
 
7051
+ if (params.MultiCertInfo) {
7052
+ let obj = new MultiCertInfo();
7053
+ obj.deserialize(params.MultiCertInfo)
7054
+ this.MultiCertInfo = obj;
7055
+ }
7056
+ this.MaxConn = 'MaxConn' in params ? params.MaxConn : null;
7057
+ this.MaxCps = 'MaxCps' in params ? params.MaxCps : null;
7058
+
6929
7059
  }
6930
7060
  }
6931
7061
 
@@ -7172,13 +7302,13 @@ OPEN: public network; INTERNAL: private network.
7172
7302
  this.LoadBalancerVips = null;
7173
7303
 
7174
7304
  /**
7175
- * Public IP of the real server bound to a CLB.
7305
+ * Public IPs of the backend services bound with the load balancer. Only the public IPs of CVMs are supported now.
7176
7306
  * @type {Array.<string> || null}
7177
7307
  */
7178
7308
  this.BackendPublicIps = null;
7179
7309
 
7180
7310
  /**
7181
- * Private IP of the real server bound to a CLB.
7311
+ * Private IPs of the backend services bound with the load balancer. Only the private IPs of CVMs are supported now.
7182
7312
  * @type {Array.<string> || null}
7183
7313
  */
7184
7314
  this.BackendPrivateIps = null;
@@ -8436,7 +8566,7 @@ class ModifyDomainAttributesRequest extends AbstractModel {
8436
8566
  this.NewDomain = null;
8437
8567
 
8438
8568
  /**
8439
- * Domain name certificate information. Note: This is only applicable to SNI-enabled listeners.
8569
+ * Certificate information of the domain name. It is only applicable to listeners with SNI enabled. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
8440
8570
  * @type {CertificateInput || null}
8441
8571
  */
8442
8572
  this.Certificate = null;
@@ -8465,6 +8595,12 @@ class ModifyDomainAttributesRequest extends AbstractModel {
8465
8595
  */
8466
8596
  this.NewDomains = null;
8467
8597
 
8598
+ /**
8599
+ * Certificate information of the domain name. It is only applicable to listeners with SNI enabled. You can specify multiple server-side certificates with different algorithm types. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
8600
+ * @type {MultiCertInfo || null}
8601
+ */
8602
+ this.MultiCertInfo = null;
8603
+
8468
8604
  }
8469
8605
 
8470
8606
  /**
@@ -8489,6 +8625,12 @@ class ModifyDomainAttributesRequest extends AbstractModel {
8489
8625
  this.NewDefaultServerDomain = 'NewDefaultServerDomain' in params ? params.NewDefaultServerDomain : null;
8490
8626
  this.NewDomains = 'NewDomains' in params ? params.NewDomains : null;
8491
8627
 
8628
+ if (params.MultiCertInfo) {
8629
+ let obj = new MultiCertInfo();
8630
+ obj.deserialize(params.MultiCertInfo)
8631
+ this.MultiCertInfo = obj;
8632
+ }
8633
+
8492
8634
  }
8493
8635
  }
8494
8636
 
@@ -8658,24 +8800,36 @@ class CreateLoadBalancerSnatIpsRequest extends AbstractModel {
8658
8800
  }
8659
8801
 
8660
8802
  /**
8661
- * ModifyTargetGroupInstancesWeight request structure.
8803
+ * DescribeTargetGroupInstances response structure.
8662
8804
  * @class
8663
8805
  */
8664
- class ModifyTargetGroupInstancesWeightRequest extends AbstractModel {
8806
+ class DescribeTargetGroupInstancesResponse extends AbstractModel {
8665
8807
  constructor(){
8666
8808
  super();
8667
8809
 
8668
8810
  /**
8669
- * Target group ID
8670
- * @type {string || null}
8811
+ * Number of results returned for the current query
8812
+ * @type {number || null}
8671
8813
  */
8672
- this.TargetGroupId = null;
8814
+ this.TotalCount = null;
8673
8815
 
8674
8816
  /**
8675
- * Array of servers for which to modify weights
8676
- * @type {Array.<TargetGroupInstance> || null}
8817
+ * Information of the bound server
8818
+ * @type {Array.<TargetGroupBackend> || null}
8677
8819
  */
8678
- this.TargetGroupInstances = null;
8820
+ this.TargetGroupInstanceSet = null;
8821
+
8822
+ /**
8823
+ * The actual total number of bound instances, which is not affected by the setting of `Limit`, `Offset` and the CAM permissions.
8824
+ * @type {number || null}
8825
+ */
8826
+ this.RealCount = null;
8827
+
8828
+ /**
8829
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
8830
+ * @type {string || null}
8831
+ */
8832
+ this.RequestId = null;
8679
8833
 
8680
8834
  }
8681
8835
 
@@ -8686,16 +8840,18 @@ class ModifyTargetGroupInstancesWeightRequest extends AbstractModel {
8686
8840
  if (!params) {
8687
8841
  return;
8688
8842
  }
8689
- this.TargetGroupId = 'TargetGroupId' in params ? params.TargetGroupId : null;
8843
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
8690
8844
 
8691
- if (params.TargetGroupInstances) {
8692
- this.TargetGroupInstances = new Array();
8693
- for (let z in params.TargetGroupInstances) {
8694
- let obj = new TargetGroupInstance();
8695
- obj.deserialize(params.TargetGroupInstances[z]);
8696
- this.TargetGroupInstances.push(obj);
8845
+ if (params.TargetGroupInstanceSet) {
8846
+ this.TargetGroupInstanceSet = new Array();
8847
+ for (let z in params.TargetGroupInstanceSet) {
8848
+ let obj = new TargetGroupBackend();
8849
+ obj.deserialize(params.TargetGroupInstanceSet[z]);
8850
+ this.TargetGroupInstanceSet.push(obj);
8697
8851
  }
8698
8852
  }
8853
+ this.RealCount = 'RealCount' in params ? params.RealCount : null;
8854
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
8699
8855
 
8700
8856
  }
8701
8857
  }
@@ -8972,7 +9128,7 @@ class RuleInput extends AbstractModel {
8972
9128
  this.HealthCheck = null;
8973
9129
 
8974
9130
  /**
8975
- * Certificate information
9131
+ * Certificate information. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
8976
9132
  * @type {CertificateInput || null}
8977
9133
  */
8978
9134
  this.Certificate = null;
@@ -9032,6 +9188,12 @@ They represent weighted round robin, least connections, and IP hash, respectivel
9032
9188
  */
9033
9189
  this.Domains = null;
9034
9190
 
9191
+ /**
9192
+ * Certificate information. You can specify multiple server-side certificates with different algorithm types. `Certificate` and `MultiCertInfo` cannot be specified at the same time.
9193
+ * @type {MultiCertInfo || null}
9194
+ */
9195
+ this.MultiCertInfo = null;
9196
+
9035
9197
  }
9036
9198
 
9037
9199
  /**
@@ -9066,6 +9228,12 @@ They represent weighted round robin, least connections, and IP hash, respectivel
9066
9228
  this.Quic = 'Quic' in params ? params.Quic : null;
9067
9229
  this.Domains = 'Domains' in params ? params.Domains : null;
9068
9230
 
9231
+ if (params.MultiCertInfo) {
9232
+ let obj = new MultiCertInfo();
9233
+ obj.deserialize(params.MultiCertInfo)
9234
+ this.MultiCertInfo = obj;
9235
+ }
9236
+
9069
9237
  }
9070
9238
  }
9071
9239
 
@@ -11224,6 +11392,7 @@ module.exports = {
11224
11392
  DisassociateTargetGroupsResponse: DisassociateTargetGroupsResponse,
11225
11393
  SetLoadBalancerClsLogResponse: SetLoadBalancerClsLogResponse,
11226
11394
  DescribeLoadBalancerTrafficResponse: DescribeLoadBalancerTrafficResponse,
11395
+ MultiCertInfo: MultiCertInfo,
11227
11396
  ModifyRuleRequest: ModifyRuleRequest,
11228
11397
  DescribeCustomizedConfigListResponse: DescribeCustomizedConfigListResponse,
11229
11398
  DescribeBlockIPListResponse: DescribeBlockIPListResponse,
@@ -11299,6 +11468,7 @@ module.exports = {
11299
11468
  TargetGroupBackend: TargetGroupBackend,
11300
11469
  DescribeClassicalLBByInstanceIdRequest: DescribeClassicalLBByInstanceIdRequest,
11301
11470
  DescribeResourcesResponse: DescribeResourcesResponse,
11471
+ ModifyTargetGroupInstancesWeightRequest: ModifyTargetGroupInstancesWeightRequest,
11302
11472
  ManualRewriteResponse: ManualRewriteResponse,
11303
11473
  ModifyBlockIPListRequest: ModifyBlockIPListRequest,
11304
11474
  ModifyBlockIPListResponse: ModifyBlockIPListResponse,
@@ -11330,7 +11500,7 @@ module.exports = {
11330
11500
  ManualRewriteRequest: ManualRewriteRequest,
11331
11501
  ModifyListenerResponse: ModifyListenerResponse,
11332
11502
  DescribeTargetHealthResponse: DescribeTargetHealthResponse,
11333
- DescribeTargetGroupInstancesResponse: DescribeTargetGroupInstancesResponse,
11503
+ CertInfo: CertInfo,
11334
11504
  CreateTargetGroupRequest: CreateTargetGroupRequest,
11335
11505
  ClusterItem: ClusterItem,
11336
11506
  BindDetailItem: BindDetailItem,
@@ -11367,7 +11537,7 @@ module.exports = {
11367
11537
  DeregisterTargetsRequest: DeregisterTargetsRequest,
11368
11538
  InternetAccessible: InternetAccessible,
11369
11539
  CreateLoadBalancerSnatIpsRequest: CreateLoadBalancerSnatIpsRequest,
11370
- ModifyTargetGroupInstancesWeightRequest: ModifyTargetGroupInstancesWeightRequest,
11540
+ DescribeTargetGroupInstancesResponse: DescribeTargetGroupInstancesResponse,
11371
11541
  DescribeQuotaResponse: DescribeQuotaResponse,
11372
11542
  DeleteTargetGroupsResponse: DeleteTargetGroupsResponse,
11373
11543
  ModifyTargetGroupInstancesPortRequest: ModifyTargetGroupInstancesPortRequest,
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.613";
1
+ const sdkVersion = "3.0.615";
2
2
  module.exports = sdkVersion
@@ -23,6 +23,7 @@ const ModifyMigrateJobSpecRequest = models.ModifyMigrateJobSpecRequest;
23
23
  const StartMigrateJobRequest = models.StartMigrateJobRequest;
24
24
  const StepTip = models.StepTip;
25
25
  const DestroyMigrateJobRequest = models.DestroyMigrateJobRequest;
26
+ const SkipCheckItemResponse = models.SkipCheckItemResponse;
26
27
  const ResizeSyncJobResponse = models.ResizeSyncJobResponse;
27
28
  const ResumeMigrateJobResponse = models.ResumeMigrateJobResponse;
28
29
  const DifferenceItem = models.DifferenceItem;
@@ -69,6 +70,8 @@ const DescribeMigrationJobsResponse = models.DescribeMigrationJobsResponse;
69
70
  const SkippedItem = models.SkippedItem;
70
71
  const DestroyMigrateJobResponse = models.DestroyMigrateJobResponse;
71
72
  const ProcessProgress = models.ProcessProgress;
73
+ const SkipSyncCheckItemRequest = models.SkipSyncCheckItemRequest;
74
+ const SkipSyncCheckItemResponse = models.SkipSyncCheckItemResponse;
72
75
  const IsolateSyncJobResponse = models.IsolateSyncJobResponse;
73
76
  const CreateMigrateCheckJobRequest = models.CreateMigrateCheckJobRequest;
74
77
  const DescribeMigrationJobsRequest = models.DescribeMigrationJobsRequest;
@@ -102,6 +105,7 @@ const TradeInfo = models.TradeInfo;
102
105
  const StartCompareResponse = models.StartCompareResponse;
103
106
  const CreateCompareTaskResponse = models.CreateCompareTaskResponse;
104
107
  const StopCompareResponse = models.StopCompareResponse;
108
+ const SkipCheckItemRequest = models.SkipCheckItemRequest;
105
109
  const CompareAbstractInfo = models.CompareAbstractInfo;
106
110
  const CheckStep = models.CheckStep;
107
111
  const CompareTaskItem = models.CompareTaskItem;
@@ -131,6 +135,7 @@ const DescribeCompareReportRequest = models.DescribeCompareReportRequest;
131
135
  const View = models.View;
132
136
  const TagItem = models.TagItem;
133
137
  const RecoverMigrateJobRequest = models.RecoverMigrateJobRequest;
138
+ const OnlineDDL = models.OnlineDDL;
134
139
  const DatabaseTableObject = models.DatabaseTableObject;
135
140
  const Table = models.Table;
136
141
  const CompareDetailInfo = models.CompareDetailInfo;
@@ -347,6 +352,17 @@ After calling this API, you can call the `DescribeMigrationJobs` API to query th
347
352
  this.request("DescribeMigrateDBInstances", req, resp, cb);
348
353
  }
349
354
 
355
+ /**
356
+ * This API is used for the backend to skip a failed check item. Theoretically, to execute a migration task normally, any check step cannot be skipped, and the check must be passed. For products or links that support check item skipping, see [Check Item Overview](https://www.tencentcloud.com/document/product/571/42551).
357
+ * @param {SkipCheckItemRequest} req
358
+ * @param {function(string, SkipCheckItemResponse):void} cb
359
+ * @public
360
+ */
361
+ SkipCheckItem(req, cb) {
362
+ let resp = new SkipCheckItemResponse();
363
+ this.request("SkipCheckItem", req, resp, cb);
364
+ }
365
+
350
366
  /**
351
367
  * This API is used to verify a migration task.
352
368
  Before migration, you should call this API to create a check task. Migration will start only if the check succeeds. You can view the check result through the `DescribeMigrationCheckJob` API.
@@ -383,6 +399,17 @@ After successful check, if the migration task needs to be modified, a new check
383
399
  this.request("DescribeCompareTasks", req, resp, cb);
384
400
  }
385
401
 
402
+ /**
403
+ * This API is used for the backend to skip a failed check item. Theoretically, to execute a sync task normally, any check step cannot be skipped, and the check must be passed. For products or links that support check item skipping, see [Check Item Overview](https://www.tencentcloud.com/document/product/571/42551).
404
+ * @param {SkipSyncCheckItemRequest} req
405
+ * @param {function(string, SkipSyncCheckItemResponse):void} cb
406
+ * @public
407
+ */
408
+ SkipSyncCheckItem(req, cb) {
409
+ let resp = new SkipSyncCheckItemResponse();
410
+ this.request("SkipSyncCheckItem", req, resp, cb);
411
+ }
412
+
386
413
  /**
387
414
  * This API is used to query the list of data migration tasks.
388
415
  * @param {DescribeMigrationJobsRequest} req