tencentcloud-sdk-nodejs-intl-en 3.0.1059 → 3.0.1061
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/common/sdk_version.js +1 -1
- package/tencentcloud/gwlb/v20240906/models.js +25 -15
- package/tencentcloud/ims/v20201229/models.js +2 -2
- package/tencentcloud/ocr/v20181119/models.js +8 -0
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/tke/v20220501/index.js +4 -0
- package/tencentcloud/tke/v20220501/models.js +4117 -0
- package/tencentcloud/tke/v20220501/tke_client.js +216 -0
- package/tencentcloud/tms/v20201229/models.js +1 -1
- package/tencentcloud/vpc/v20170312/models.js +1784 -1219
- package/tencentcloud/vpc/v20170312/vpc_client.js +76 -23
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1061";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -201,7 +201,7 @@ class ModifyGatewayLoadBalancerAttributeRequest extends AbstractModel {
|
|
|
201
201
|
this.LoadBalancerId = null;
|
|
202
202
|
|
|
203
203
|
/**
|
|
204
|
-
* GWLB name.
|
|
204
|
+
* GWLB instance name. It supports input of 1 to 60 characters.
|
|
205
205
|
* @type {string || null}
|
|
206
206
|
*/
|
|
207
207
|
this.LoadBalancerName = null;
|
|
@@ -554,7 +554,10 @@ class TargetGroupHealthCheck extends AbstractModel {
|
|
|
554
554
|
this.HealthSwitch = null;
|
|
555
555
|
|
|
556
556
|
/**
|
|
557
|
-
* Protocol used for health
|
|
557
|
+
* Protocol used for health check, which supports PING and TCP and is PING by default.
|
|
558
|
+
|
|
559
|
+
- PING: icmp
|
|
560
|
+
- TCP: tcp
|
|
558
561
|
* @type {string || null}
|
|
559
562
|
*/
|
|
560
563
|
this.Protocol = null;
|
|
@@ -624,7 +627,7 @@ class ModifyTargetGroupInstancesWeightRequest extends AbstractModel {
|
|
|
624
627
|
this.TargetGroupId = null;
|
|
625
628
|
|
|
626
629
|
/**
|
|
627
|
-
*
|
|
630
|
+
* Instance binding configuration array.
|
|
628
631
|
* @type {Array.<TargetGroupInstance> || null}
|
|
629
632
|
*/
|
|
630
633
|
this.TargetGroupInstances = null;
|
|
@@ -695,7 +698,8 @@ class Price extends AbstractModel {
|
|
|
695
698
|
this.InstancePrice = null;
|
|
696
699
|
|
|
697
700
|
/**
|
|
698
|
-
* It describes the
|
|
701
|
+
* It describes the price of GLCU.
|
|
702
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
699
703
|
* @type {ItemPrice || null}
|
|
700
704
|
*/
|
|
701
705
|
this.LcuPrice = null;
|
|
@@ -1177,7 +1181,7 @@ class CreateTargetGroupRequest extends AbstractModel {
|
|
|
1177
1181
|
super();
|
|
1178
1182
|
|
|
1179
1183
|
/**
|
|
1180
|
-
* Target group name,
|
|
1184
|
+
* Target group name, limited to 60 characters.
|
|
1181
1185
|
* @type {string || null}
|
|
1182
1186
|
*/
|
|
1183
1187
|
this.TargetGroupName = null;
|
|
@@ -1189,7 +1193,7 @@ class CreateTargetGroupRequest extends AbstractModel {
|
|
|
1189
1193
|
this.VpcId = null;
|
|
1190
1194
|
|
|
1191
1195
|
/**
|
|
1192
|
-
* Default port of target group
|
|
1196
|
+
* Default port of the target group, which can be used when servers are added later. Either 'Port' or 'TargetGroupInstances.N.port' must be filled in.
|
|
1193
1197
|
* @type {number || null}
|
|
1194
1198
|
*/
|
|
1195
1199
|
this.Port = null;
|
|
@@ -1201,19 +1205,23 @@ class CreateTargetGroupRequest extends AbstractModel {
|
|
|
1201
1205
|
this.TargetGroupInstances = null;
|
|
1202
1206
|
|
|
1203
1207
|
/**
|
|
1204
|
-
* GWLB target group protocol
|
|
1208
|
+
* GWLB target group protocol.
|
|
1209
|
+
- TENCENT_GENEVE: GENEVE standard protocol
|
|
1210
|
+
|
|
1211
|
+
- AWS_GENEVE: GENEVE compatibility protocol (a ticket is required for allowlisting)
|
|
1205
1212
|
* @type {string || null}
|
|
1206
1213
|
*/
|
|
1207
1214
|
this.Protocol = null;
|
|
1208
1215
|
|
|
1209
1216
|
/**
|
|
1210
|
-
* Health check.
|
|
1217
|
+
* Health check settings.
|
|
1211
1218
|
* @type {TargetGroupHealthCheck || null}
|
|
1212
1219
|
*/
|
|
1213
1220
|
this.HealthCheck = null;
|
|
1214
1221
|
|
|
1215
1222
|
/**
|
|
1216
|
-
*
|
|
1223
|
+
* Load balancing algorithm.
|
|
1224
|
+
- IP_HASH_3_ELASTIC: elastic hashing
|
|
1217
1225
|
* @type {string || null}
|
|
1218
1226
|
*/
|
|
1219
1227
|
this.ScheduleAlgorithm = null;
|
|
@@ -1279,7 +1287,7 @@ class CreateGatewayLoadBalancerRequest extends AbstractModel {
|
|
|
1279
1287
|
this.SubnetId = null;
|
|
1280
1288
|
|
|
1281
1289
|
/**
|
|
1282
|
-
* GWLB instance name. It supports
|
|
1290
|
+
* GWLB instance name. It supports input of 1 to 60 characters. If not filled in, it will be generated automatically by default.
|
|
1283
1291
|
* @type {string || null}
|
|
1284
1292
|
*/
|
|
1285
1293
|
this.LoadBalancerName = null;
|
|
@@ -1786,7 +1794,7 @@ class DeleteTargetGroupsRequest extends AbstractModel {
|
|
|
1786
1794
|
super();
|
|
1787
1795
|
|
|
1788
1796
|
/**
|
|
1789
|
-
* Target group list.
|
|
1797
|
+
* Target group ID list.
|
|
1790
1798
|
* @type {Array.<string> || null}
|
|
1791
1799
|
*/
|
|
1792
1800
|
this.TargetGroupIds = null;
|
|
@@ -1885,7 +1893,7 @@ class TargetGroupAssociation extends AbstractModel {
|
|
|
1885
1893
|
super();
|
|
1886
1894
|
|
|
1887
1895
|
/**
|
|
1888
|
-
*
|
|
1896
|
+
* GWLB instance ID.
|
|
1889
1897
|
* @type {string || null}
|
|
1890
1898
|
*/
|
|
1891
1899
|
this.LoadBalancerId = null;
|
|
@@ -1990,13 +1998,13 @@ class AssociationItem extends AbstractModel {
|
|
|
1990
1998
|
super();
|
|
1991
1999
|
|
|
1992
2000
|
/**
|
|
1993
|
-
*
|
|
2001
|
+
* Associated GWLB instance ID
|
|
1994
2002
|
* @type {string || null}
|
|
1995
2003
|
*/
|
|
1996
2004
|
this.LoadBalancerId = null;
|
|
1997
2005
|
|
|
1998
2006
|
/**
|
|
1999
|
-
*
|
|
2007
|
+
* GWLB instance name
|
|
2000
2008
|
* @type {string || null}
|
|
2001
2009
|
*/
|
|
2002
2010
|
this.LoadBalancerName = null;
|
|
@@ -2129,7 +2137,9 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
2129
2137
|
this.Protocol = null;
|
|
2130
2138
|
|
|
2131
2139
|
/**
|
|
2132
|
-
* Scheduling algorithm.
|
|
2140
|
+
* Scheduling algorithm.
|
|
2141
|
+
ip_hash_3: elastic hashing
|
|
2142
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
2133
2143
|
* @type {string || null}
|
|
2134
2144
|
*/
|
|
2135
2145
|
this.ScheduleAlgorithm = null;
|
|
@@ -25,7 +25,7 @@ class ImageModerationRequest extends AbstractModel {
|
|
|
25
25
|
super();
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
* This field indicates the specific number of the policy, which is used for API scheduling and can be configured in the CMS console. If the `Biztype` parameter is passed in, a moderation policy will be used based on the business scenario; otherwise, the default moderation policy will be used.<br>Note: `Biztype` can contain 3
|
|
28
|
+
* This field indicates the specific number of the policy, which is used for API scheduling and can be configured in the CMS console. If the `Biztype` parameter is passed in, a moderation policy will be used based on the business scenario; otherwise, the default moderation policy will be used.<br>Note: `Biztype` can contain 3-32 digits, letters, and underscores; different `Biztype` values are associated with different business scenarios and moderation policies, so you need to verify the `Biztype` before calling this API.
|
|
29
29
|
* @type {string || null}
|
|
30
30
|
*/
|
|
31
31
|
this.BizType = null;
|
|
@@ -1004,7 +1004,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
1004
1004
|
this.RecognitionResults = null;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
* The unique request ID,
|
|
1007
|
+
* 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.
|
|
1008
1008
|
* @type {string || null}
|
|
1009
1009
|
*/
|
|
1010
1010
|
this.RequestId = null;
|
|
@@ -3505,6 +3505,13 @@ class RecognizeThaiIDCardOCRResponse extends AbstractModel {
|
|
|
3505
3505
|
*/
|
|
3506
3506
|
this.WarnCardInfos = null;
|
|
3507
3507
|
|
|
3508
|
+
/**
|
|
3509
|
+
* Field confidence:
|
|
3510
|
+
{ "ID": { "Confidence": 0.9999 }, "ThaiName": { "Confidence": 0.9996 } }
|
|
3511
|
+
* @type {string || null}
|
|
3512
|
+
*/
|
|
3513
|
+
this.AdvancedInfo = null;
|
|
3514
|
+
|
|
3508
3515
|
/**
|
|
3509
3516
|
* 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.
|
|
3510
3517
|
* @type {string || null}
|
|
@@ -3535,6 +3542,7 @@ class RecognizeThaiIDCardOCRResponse extends AbstractModel {
|
|
|
3535
3542
|
this.Address = 'Address' in params ? params.Address : null;
|
|
3536
3543
|
this.PortraitImage = 'PortraitImage' in params ? params.PortraitImage : null;
|
|
3537
3544
|
this.WarnCardInfos = 'WarnCardInfos' in params ? params.WarnCardInfos : null;
|
|
3545
|
+
this.AdvancedInfo = 'AdvancedInfo' in params ? params.AdvancedInfo : null;
|
|
3538
3546
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3539
3547
|
|
|
3540
3548
|
}
|