tencentcloud-sdk-nodejs-intl-en 3.0.1226 → 3.0.1228

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.1226",
3
+ "version": "3.0.1228",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -2305,6 +2305,18 @@ class CreateCdbProxyAddressRequest extends AbstractModel {
2305
2305
  */
2306
2306
  this.ConnectionPoolType = null;
2307
2307
 
2308
+ /**
2309
+ *
2310
+ * @type {boolean || null}
2311
+ */
2312
+ this.AutoLoadBalance = null;
2313
+
2314
+ /**
2315
+ *
2316
+ * @type {string || null}
2317
+ */
2318
+ this.AccessMode = null;
2319
+
2308
2320
  }
2309
2321
 
2310
2322
  /**
@@ -2340,6 +2352,8 @@ class CreateCdbProxyAddressRequest extends AbstractModel {
2340
2352
  this.VPort = 'VPort' in params ? params.VPort : null;
2341
2353
  this.SecurityGroup = 'SecurityGroup' in params ? params.SecurityGroup : null;
2342
2354
  this.ConnectionPoolType = 'ConnectionPoolType' in params ? params.ConnectionPoolType : null;
2355
+ this.AutoLoadBalance = 'AutoLoadBalance' in params ? params.AutoLoadBalance : null;
2356
+ this.AccessMode = 'AccessMode' in params ? params.AccessMode : null;
2343
2357
 
2344
2358
  }
2345
2359
  }
@@ -13355,6 +13369,18 @@ class AdjustCdbProxyAddressRequest extends AbstractModel {
13355
13369
  */
13356
13370
  this.ProxyAllocation = null;
13357
13371
 
13372
+ /**
13373
+ *
13374
+ * @type {boolean || null}
13375
+ */
13376
+ this.AutoLoadBalance = null;
13377
+
13378
+ /**
13379
+ *
13380
+ * @type {string || null}
13381
+ */
13382
+ this.AccessMode = null;
13383
+
13358
13384
  }
13359
13385
 
13360
13386
  /**
@@ -13384,6 +13410,8 @@ class AdjustCdbProxyAddressRequest extends AbstractModel {
13384
13410
  this.ProxyAllocation.push(obj);
13385
13411
  }
13386
13412
  }
13413
+ this.AutoLoadBalance = 'AutoLoadBalance' in params ? params.AutoLoadBalance : null;
13414
+ this.AccessMode = 'AccessMode' in params ? params.AccessMode : null;
13387
13415
 
13388
13416
  }
13389
13417
  }
@@ -17941,7 +17969,7 @@ class DescribeDBPriceRequest extends AbstractModel {
17941
17969
  this.Period = null;
17942
17970
 
17943
17971
  /**
17944
- * AZ information in the format of "ap-guangzhou-2". You can use the <a href="https://intl.cloud.tencent.com/document/api/236/17229?from_cn_redirect=1">DescribeDBZoneConfig</a> API to query the configurable values. This parameter is required when `InstanceId` is empty.
17972
+ * AZ information in the format of "ap-guangzhou-3". You can use the <a href="https://intl.cloud.tencent.com/document/api/236/17229?from_cn_redirect=1">DescribeDBZoneConfig</a> API to query the configurable values. This parameter is required when `InstanceId` is empty.
17945
17973
  * @type {string || null}
17946
17974
  */
17947
17975
  this.Zone = null;
@@ -18012,6 +18040,12 @@ class DescribeDBPriceRequest extends AbstractModel {
18012
18040
  */
18013
18041
  this.Ladder = null;
18014
18042
 
18043
+ /**
18044
+ *
18045
+ * @type {string || null}
18046
+ */
18047
+ this.DiskType = null;
18048
+
18015
18049
  }
18016
18050
 
18017
18051
  /**
@@ -18034,6 +18068,7 @@ class DescribeDBPriceRequest extends AbstractModel {
18034
18068
  this.Cpu = 'Cpu' in params ? params.Cpu : null;
18035
18069
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
18036
18070
  this.Ladder = 'Ladder' in params ? params.Ladder : null;
18071
+ this.DiskType = 'DiskType' in params ? params.DiskType : null;
18037
18072
 
18038
18073
  }
18039
18074
  }
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1226";
1
+ const sdkVersion = "3.0.1228";
2
2
  module.exports = sdkVersion
@@ -8120,7 +8120,7 @@ class RunInstancesRequest extends AbstractModel {
8120
8120
  super();
8121
8121
 
8122
8122
  /**
8123
- * Instance [billing type](https://intl.cloud.tencent.com/document/product/213/2180?from_cn_redirect=1). <br><li>`POSTPAID_BY_HOUR`: Hourly-based pay-as-you-go <br><li>`CDHPAID`: Dedicated CVM (associated with a dedicated host. Resource usage of the dedicated host is free of charge.) <br><li>`SPOTPAID`: [Spot instance](https://intl.cloud.tencent.com/document/product/213/17817)<br>Default value: `POSTPAID_BY_HOUR`.
8123
+ * Instance [billing type](https://intl.cloud.tencent.com/document/product/213/2180?from_cn_redirect=1). <br><li>`PREPAID`: Monthly Subscription, used for at least one month <br><li>`POSTPAID_BY_HOUR`: Hourly-based pay-as-you-go <br><li>`CDHPAID`: [Dedicated CVM](https://www.tencentcloud.com/document/product/416/5068?lang=en&pg=) (associated with a dedicated host. Resource usage of the dedicated host is free of charge.) <br><li>`SPOTPAID`: [Spot instance](https://intl.cloud.tencent.com/document/product/213/17817)<br>Default value: `POSTPAID_BY_HOUR`.
8124
8124
  * @type {string || null}
8125
8125
  */
8126
8126
  this.InstanceChargeType = null;
@@ -11925,7 +11925,10 @@ class InternetAccessible extends AbstractModel {
11925
11925
  super();
11926
11926
 
11927
11927
  /**
11928
- * Network connection billing plan. Valid value: <br><li>TRAFFIC_POSTPAID_BY_HOUR: pay after use. You are billed for your traffic, by the hour.
11928
+ * Network connection billing plan. Valid value:
11929
+
11930
+ <li>TRAFFIC_POSTPAID_BY_HOUR: pay after use. You are billed for your traffic, by the hour. </li>
11931
+ <li>BANDWIDTH_PACKAGE: Bandwidth package user. </li>
11929
11932
  * @type {string || null}
11930
11933
  */
11931
11934
  this.InternetChargeType = null;
@@ -11949,32 +11952,21 @@ class InternetAccessible extends AbstractModel {
11949
11952
  this.BandwidthPackageId = null;
11950
11953
 
11951
11954
  /**
11952
- * The EIP line type.
11955
+ * Describes the line type. for details, refer to [EIP IP address types](https://www.tencentcloud.com/zh/document/product/213/5733). default value: `BGP`.
11953
11956
  <li>BGP Default: BGP</li>
11954
-
11955
11957
  For a user who has activated the static single-line IP allowlist, possible values are:
11956
-
11957
- <li>CMCC: China Mobile</li>
11958
- <li>CTCC: China Telecom</li>
11959
- <li>CUCC: China Unicom</li>
11960
-
11958
+ <li>CMCC: China Mobile</li> <li>CTCC: China Telecom</li> <li>CUCC: China Unicom</li>
11961
11959
  Note: Only certain regions support static single-line IP addresses.
11962
11960
  * @type {string || null}
11963
11961
  */
11964
11962
  this.InternetServiceProvider = null;
11965
11963
 
11966
11964
  /**
11967
- * AddressType. Default value: `WanIP`.
11965
+ * Type of public IP address.
11968
11966
 
11969
- For beta users of dedicated IP, the value can be:
11970
- <li>HighQualityEIP: Dedicated IP</li>
11971
- Note that dedicated IPs are only available in partial regions.
11972
-
11973
- For beta users of Anti-DDoS IP, the value can be:
11974
- <li>AntiDDoSEIP: Anti-DDoS EIP</li>
11975
- Note that Anti-DDoS IPs are only available in partial regions.
11976
-
11977
- This feature is currently in gradually released phase. To access it, please contact us.
11967
+ <li> WanIP: Ordinary public IP address. </li> <li> HighQualityEIP: High Quality EIP is supported only in Singapore and Hong Kong. </li> <li> AntiDDoSEIP: Anti-DDoS IP is supported only in specific regions. For details, see [EIP Product Overview](https://www.tencentcloud.com/zh/document/product/213/5733). </li>
11968
+ Specify the type of public IPv4 address to assign a public IPv4 address to the resource. HighQualityEIP and AntiDDoSEIP features are gradually released in select regions.
11969
+ This feature is currently in gradually released phase. To access it, please [contact us](https://console.tencentcloud.com/workorder).
11978
11970
  * @type {string || null}
11979
11971
  */
11980
11972
  this.IPv4AddressType = null;
@@ -11983,12 +11975,12 @@ This feature is currently in gradually released phase. To access it, please cont
11983
11975
  * Indicates the type of EIPv6. Valid values:
11984
11976
 
11985
11977
  <li>EIPv6: common IPv6</li>
11986
- <li>HighQualityEIPv6: dedicated IPv6</li>
11978
+ <li>HighQualityEIPv6: High Quality EIPv6</li>
11987
11979
  Note: Contact the product team to enable the dedicated IPv6 allowlist. The dedicated IPv6 is only supported in some regions.
11988
11980
 
11989
11981
  Default: `EIPv6`
11990
11982
 
11991
- This feature is currently in gradually released phase. To access it, please contact us.
11983
+ This feature is currently in gradually released phase. To access it, please [contact us](https://console.tencentcloud.com/workorder).
11992
11984
  * @type {string || null}
11993
11985
  */
11994
11986
  this.IPv6AddressType = null;
@@ -6444,13 +6444,13 @@ class DescribeZonesRequest extends AbstractModel {
6444
6444
  super();
6445
6445
 
6446
6446
  /**
6447
- * Whether the virtual zone is included.–
6447
+ * Whether the virtual zone is included.
6448
6448
  * @type {boolean || null}
6449
6449
  */
6450
6450
  this.IncludeVirtualZones = null;
6451
6451
 
6452
6452
  /**
6453
- * Whether to display all AZs in a region and the users permissions in each AZ.
6453
+ * Whether to display all AZs in a region and the user's permissions in each AZ.
6454
6454
  * @type {boolean || null}
6455
6455
  */
6456
6456
  this.ShowPermission = null;
@@ -14237,6 +14237,12 @@ class ModifyClusterSlaveZoneRequest extends AbstractModel {
14237
14237
  */
14238
14238
  this.BinlogSyncWay = null;
14239
14239
 
14240
+ /**
14241
+ *
14242
+ * @type {number || null}
14243
+ */
14244
+ this.SemiSyncTimeout = null;
14245
+
14240
14246
  }
14241
14247
 
14242
14248
  /**
@@ -14250,6 +14256,7 @@ class ModifyClusterSlaveZoneRequest extends AbstractModel {
14250
14256
  this.OldSlaveZone = 'OldSlaveZone' in params ? params.OldSlaveZone : null;
14251
14257
  this.NewSlaveZone = 'NewSlaveZone' in params ? params.NewSlaveZone : null;
14252
14258
  this.BinlogSyncWay = 'BinlogSyncWay' in params ? params.BinlogSyncWay : null;
14259
+ this.SemiSyncTimeout = 'SemiSyncTimeout' in params ? params.SemiSyncTimeout : null;
14253
14260
 
14254
14261
  }
14255
14262
  }
@@ -237,8 +237,7 @@ Image-based liveness detection is suitable for scenarios where the image is a se
237
237
  /**
238
238
  * This API is used to perform facial feature localization (aka facial keypoint localization) on a given image and calculate 90 facial keypoints that make up the contour of the face, including eyebrows (8 points on the left and 8 on the right), eyes (8 points on the left and 8 on the right), nose (13 points), mouth (22 points), face contour (21 points), and eyeballs or pupils (2 points).
239
239
 
240
- >
241
- - Please use the signature algorithm v3 to calculate the signature in the common parameters, that is, set the `SignatureMethod` parameter to `TC3-HMAC-SHA256`.
240
+ >- Please use the signature algorithm v3 to calculate the signature in the common parameters, that is, set the `SignatureMethod` parameter to `TC3-HMAC-SHA256`.
242
241
  * @param {AnalyzeFaceRequest} req
243
242
  * @param {function(string, AnalyzeFaceResponse):void} cb
244
243
  * @public
@@ -276,8 +275,7 @@ This API should be used together with [Group Management APIs](https://intl.cloud
276
275
 
277
276
  /**
278
277
  * This API is used to copy a person in a group to another group (without copying the description). One person can exist in up to 100 groups at the same time.
279
- >
280
- - Note: in the case that the version of the algorithm model was 2.0 when the person was created, the copy operation will fail if the target group is not of algorithm model 2.0.
278
+ >- Note: in the case that the version of the algorithm model was 2.0 when the person was created, the copy operation will fail if the target group is not of algorithm model 2.0.
281
279
  * @param {CopyPersonRequest} req
282
280
  * @param {function(string, CopyPersonResponse):void} cb
283
281
  * @public
@@ -3545,7 +3545,7 @@ class AnalyzeFaceResponse extends AbstractModel {
3545
3545
  this.FaceModelVersion = null;
3546
3546
 
3547
3547
  /**
3548
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
3548
+ * 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.
3549
3549
  * @type {string || null}
3550
3550
  */
3551
3551
  this.RequestId = null;
@@ -4299,7 +4299,7 @@ class CopyPersonResponse extends AbstractModel {
4299
4299
  this.SucGroupIds = null;
4300
4300
 
4301
4301
  /**
4302
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
4302
+ * 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.
4303
4303
  * @type {string || null}
4304
4304
  */
4305
4305
  this.RequestId = null;
@@ -17,7 +17,9 @@
17
17
  const models = require("./models");
18
18
  const AbstractClient = require('../../common/abstract_client')
19
19
  const SummaryDetails = models.SummaryDetails;
20
+ const DescribeCustomerVoucherListResponse = models.DescribeCustomerVoucherListResponse;
20
21
  const QueryDirectCustomersCreditData = models.QueryDirectCustomersCreditData;
22
+ const DescribeCustomerOwnVoucherListRequest = models.DescribeCustomerOwnVoucherListRequest;
21
23
  const DescribeCustomerBillSummaryResponse = models.DescribeCustomerBillSummaryResponse;
22
24
  const TradeTwoNode = models.TradeTwoNode;
23
25
  const QueryT1IndirectCustomersDetailRequest = models.QueryT1IndirectCustomersDetailRequest;
@@ -29,7 +31,7 @@ const DescribeCustomerBillDownloadUrlRequest = models.DescribeCustomerBillDownlo
29
31
  const DescribeCustomerUinData = models.DescribeCustomerUinData;
30
32
  const CountryCodeItem = models.CountryCodeItem;
31
33
  const DescribeBillSummaryByRegionRequest = models.DescribeBillSummaryByRegionRequest;
32
- const QueryCreditByUinListResponse = models.QueryCreditByUinListResponse;
34
+ const DescribeCustomerBillDetailRequest = models.DescribeCustomerBillDetailRequest;
33
35
  const QueryPendingSubAgentsV2Request = models.QueryPendingSubAgentsV2Request;
34
36
  const QueryCreditAllocationHistoryResponse = models.QueryCreditAllocationHistoryResponse;
35
37
  const CreateAccountRequest = models.CreateAccountRequest;
@@ -53,6 +55,7 @@ const QueryInvitationInfoResponse = models.QueryInvitationInfoResponse;
53
55
  const DescribeBillSummaryByPayModeResponse = models.DescribeBillSummaryByPayModeResponse;
54
56
  const QueryAccountVerificationStatusResponse = models.QueryAccountVerificationStatusResponse;
55
57
  const AllocateCustomerCreditRequest = models.AllocateCustomerCreditRequest;
58
+ const DescribeCustomerOwnVoucherListResponse = models.DescribeCustomerOwnVoucherListResponse;
56
59
  const DescribeBillDownloadUrlRequest = models.DescribeBillDownloadUrlRequest;
57
60
  const DescribeBillSummaryByPayModeRequest = models.DescribeBillSummaryByPayModeRequest;
58
61
  const QueryInvitationInfoData = models.QueryInvitationInfoData;
@@ -64,18 +67,21 @@ const QueryT1IndirectCustomersDetailResponse = models.QueryT1IndirectCustomersDe
64
67
  const QueryVoucherAmountByUinRequest = models.QueryVoucherAmountByUinRequest;
65
68
  const GetCountryCodesRequest = models.GetCountryCodesRequest;
66
69
  const ForceQNResponse = models.ForceQNResponse;
67
- const PayModeSummaryOverviewItem = models.PayModeSummaryOverviewItem;
68
70
  const QueryPendingCustomersItem = models.QueryPendingCustomersItem;
69
71
  const QueryDirectCustomersCreditResponse = models.QueryDirectCustomersCreditResponse;
70
72
  const DescribeBillDownloadUrlResponse = models.DescribeBillDownloadUrlResponse;
73
+ const DescribeCustomerVoucherListRequest = models.DescribeCustomerVoucherListRequest;
71
74
  const DescribeCustomerUinRequest = models.DescribeCustomerUinRequest;
72
75
  const TradeOneNode = models.TradeOneNode;
73
76
  const DescribeRebateDownloadUrlResponse = models.DescribeRebateDownloadUrlResponse;
74
77
  const QuerySubAgentsDetailV2ResponseData = models.QuerySubAgentsDetailV2ResponseData;
75
78
  const DescribeBillSummaryResponse = models.DescribeBillSummaryResponse;
76
79
  const QueryInvitationInfoRequest = models.QueryInvitationInfoRequest;
80
+ const DescribeCustomerVoucherItem = models.DescribeCustomerVoucherItem;
77
81
  const QueryCustomersCreditRequest = models.QueryCustomersCreditRequest;
82
+ const QueryPolicyProductListByCodeRequest = models.QueryPolicyProductListByCodeRequest;
78
83
  const QueryT1IndirectCustomersDetailResponseData = models.QueryT1IndirectCustomersDetailResponseData;
84
+ const DescribeCustomerOwnVoucherItem = models.DescribeCustomerOwnVoucherItem;
79
85
  const DescribeCustomerInfoResponse = models.DescribeCustomerInfoResponse;
80
86
  const QueryVoucherPoolResponse = models.QueryVoucherPoolResponse;
81
87
  const QueryAccountVerificationStatusRequest = models.QueryAccountVerificationStatusRequest;
@@ -88,7 +94,7 @@ const DescribeCustomerUinResponse = models.DescribeCustomerUinResponse;
88
94
  const DescribeCustomerBillDetailByDayResponse = models.DescribeCustomerBillDetailByDayResponse;
89
95
  const ApproveClientApplyRequest = models.ApproveClientApplyRequest;
90
96
  const ApproveSubAgentApplyRequest = models.ApproveSubAgentApplyRequest;
91
- const DescribeCustomerBillDetailRequest = models.DescribeCustomerBillDetailRequest;
97
+ const PayModeSummaryOverviewItem = models.PayModeSummaryOverviewItem;
92
98
  const QueryCustomersCreditData = models.QueryCustomersCreditData;
93
99
  const QueryCustomersCreditResponse = models.QueryCustomersCreditResponse;
94
100
  const SendVerifyCodeRequest = models.SendVerifyCodeRequest;
@@ -108,7 +114,7 @@ const CreateAccountResponse = models.CreateAccountResponse;
108
114
  const ApproveClientApplyResponse = models.ApproveClientApplyResponse;
109
115
  const QueryPendingClientsV2Request = models.QueryPendingClientsV2Request;
110
116
  const TagInfo = models.TagInfo;
111
- const QueryPolicyProductListByCodeRequest = models.QueryPolicyProductListByCodeRequest;
117
+ const QueryCreditByUinListResponse = models.QueryCreditByUinListResponse;
112
118
  const BusinessSummaryOverviewItem = models.BusinessSummaryOverviewItem;
113
119
  const ForceQNRequest = models.ForceQNRequest;
114
120
  const DescribeCustomerInfoRequest = models.DescribeCustomerInfoRequest;
@@ -347,6 +353,18 @@ Callable role: End-customer.
347
353
  this.request("DescribeBillSummary", req, resp, cb);
348
354
  }
349
355
 
356
+ /**
357
+ * This API is used to query the customer voucher list by Reseller, Second-level Reseller or Distributor.
358
+ Callable roles: Reseller, Second-level Reseller or Distributor.
359
+ * @param {DescribeCustomerVoucherListRequest} req
360
+ * @param {function(string, DescribeCustomerVoucherListResponse):void} cb
361
+ * @public
362
+ */
363
+ DescribeCustomerVoucherList(req, cb) {
364
+ let resp = new DescribeCustomerVoucherListResponse();
365
+ this.request("DescribeCustomerVoucherList", req, resp, cb);
366
+ }
367
+
350
368
  /**
351
369
  * This API is used to obtain the total amount of customer bills by payment mode.
352
370
  Callable roles: Distributor, Second-level reseller, Reseller
@@ -440,6 +458,18 @@ Invokable role types: Distributor, Second-level reseller, Reseller.
440
458
  this.request("QueryInvitationInfo", req, resp, cb);
441
459
  }
442
460
 
461
+ /**
462
+ * This API is used to query the voucher list by Customer.
463
+ Callable roles: Customer.
464
+ * @param {DescribeCustomerOwnVoucherListRequest} req
465
+ * @param {function(string, DescribeCustomerOwnVoucherListResponse):void} cb
466
+ * @public
467
+ */
468
+ DescribeCustomerOwnVoucherList(req, cb) {
469
+ let resp = new DescribeCustomerOwnVoucherListResponse();
470
+ this.request("DescribeCustomerOwnVoucherList", req, resp, cb);
471
+ }
472
+
443
473
  /**
444
474
  * This API is used to get the URL for downloading the customer bill file by reseller. The download conditions are as follows:
445
475
  1. Detailed bills (billDetail and billDetailPack) can be downloaded starting from June 2022; resource bills (billResource and billResourcePack) can be downloaded starting from November 2023.