tencentcloud-sdk-nodejs-intl-en 3.0.1330 → 3.0.1332

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.1330",
3
+ "version": "3.0.1332",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1330";
1
+ const sdkVersion = "3.0.1332";
2
2
  module.exports = sdkVersion
@@ -298,7 +298,7 @@ class BatchSendEmailResponse extends AbstractModel {
298
298
  super();
299
299
 
300
300
  /**
301
- * Send task ID.
301
+ * <p>Send task ID</p>
302
302
  * @type {number || null}
303
303
  */
304
304
  this.TaskId = null;
@@ -1015,88 +1015,85 @@ class SendEmailRequest extends AbstractModel {
1015
1015
  super();
1016
1016
 
1017
1017
  /**
1018
- * Sender'S email address. when not using an alias, enter the sender's email address directly, for example: noreply@mail.qcloud.com. to enter a sender alias, follow this format (note that a space must separate the alias and email address): alias+space+<email address>. the alias cannot contain a colon (:).
1018
+ * <p>Sender's email address. If no alias is used, enter the sender's email address directly, for example: noreply@mail.qcloud.com. To use a sender alias, follow this format (note that a space must be used between the alias and the email address): alias+space+&lt;email address&gt;. The alias cannot contain a colon (:).</p>
1019
1019
  * @type {string || null}
1020
1020
  */
1021
1021
  this.FromEmailAddress = null;
1022
1022
 
1023
1023
  /**
1024
- * Email subject.
1024
+ * <p>Email Subject</p>
1025
1025
  * @type {string || null}
1026
1026
  */
1027
1027
  this.Subject = null;
1028
1028
 
1029
1029
  /**
1030
- * Recipient email address, supports up to 50 recipients for mass sending. note: the email content will display all recipient addresses. for non-mass sending, call the API multiple times to send.
1031
- Specifies that at least one of the Destination, Cc, or Bcc parameters must exist.
1030
+ * <p>Recipient email address, supports up to 50 recipients in mass sending. Note: The email content displays all recipient addresses. For non-mass sending, call the API multiple times to send.<br>At least one of the three parameters Destination/Cc/Bcc must exist.</p>
1032
1031
  * @type {Array.<string> || null}
1033
1032
  */
1034
1033
  this.Destination = null;
1035
1034
 
1036
1035
  /**
1037
- * The "reply" email address of the mail. can be filled with an email address where you can receive mail, which can be a personal mailbox. if left empty, the recipient's reply mail will fail to send.
1036
+ * <p>The "reply" email address of the mail. Can be filled with a mailbox address where you can receive emails, which can be a personal mailbox. If left empty, the recipient's reply mail will fail to send.</p>
1038
1037
  * @type {string || null}
1039
1038
  */
1040
1039
  this.ReplyToAddresses = null;
1041
1040
 
1042
1041
  /**
1043
- * Cc recipient email address, supports up to 20 carbon copies.
1042
+ * <p>Email address of CC recipients, supports up to 20 carbon copies.</p>
1044
1043
  * @type {Array.<string> || null}
1045
1044
  */
1046
1045
  this.Cc = null;
1047
1046
 
1048
1047
  /**
1049
- * Bcc email address, supports up to 20 carbon copies. Bcc and Destination must be unique.
1048
+ * <p>Bcc email address, supports up to 20 carbon copies. Bcc and Destination must be unique.</p>
1050
1049
  * @type {Array.<string> || null}
1051
1050
  */
1052
1051
  this.Bcc = null;
1053
1052
 
1054
1053
  /**
1055
- * Use template for sending and fill in related parameters.
1056
- <dx-alert infotype="notice" title="note">this field must be specified if you have not applied for special configuration.</dx-alert>.
1054
+ * <p>Fill in the template parameters when sending with a template.</p><blockquote class="rno-document-tips rno-document-tips-notice"> <div class="rno-document-tips-body"> <i class="rno-document-tip-icon"></i> <div class="rno-document-tip-title">Note</div> <div class="rno-document-tip-desc"><p>This field must be specified if you have not applied for special configuration</p></div> </div></blockquote>
1057
1055
  * @type {Template || null}
1058
1056
  */
1059
1057
  this.Template = null;
1060
1058
 
1061
1059
  /**
1062
- * This parameter has been deprecated.
1063
- <dx-alert infotype="notice" title="description"> only customers who have applied for special configuration in the past need to use this. if you have not applied for special configuration, this field does not exist.</dx-alert>.
1060
+ * <p>Abandoned</p><blockquote class="rno-document-tips rno-document-tips-notice"> <div class="rno-document-tips-body"> <i class="rno-document-tip-icon"></i> <div class="rno-document-tip-title">Description</div> <div class="rno-document-tip-desc"><p>Only customers who historically applied for special configuration require the use of this. If you have not applied for special configuration, this field does not exist.</p></div> </div></blockquote>
1064
1061
  * @type {Simple || null}
1065
1062
  */
1066
1063
  this.Simple = null;
1067
1064
 
1068
1065
  /**
1069
- * When sending an attachment, fill in the related parameters. the tencent cloud API request supports a maximum of 8M request packet. the attachment content transits Base64 and is expected to expand by 1.5 times. you should control the total size of all attachments within 4M. the API will return an error if the overall request exceeds 8M.
1066
+ * <p>To send an attachment, fill in the relevant parameters. The Tencent Cloud API request supports a maximum of 8M request packet. The attachment content is expected to expand by 1.5 times after Base64 encoding. The total size of all attachments should not exceed 4M. The API will return an error if the overall request exceeds 8M.</p>
1070
1067
  * @type {Array.<Attachment> || null}
1071
1068
  */
1072
1069
  this.Attachments = null;
1073
1070
 
1074
1071
  /**
1075
- * Unsubscription link options 0: do not add unsubscription link 1: english 2: simplified chinese 3: traditional chinese 4: spanish 5: french 6: german 7: japanese 8: korean 9: arabic 10: thai.
1072
+ * Unsubscription link options 0: do not add unsubscription link 1: english 2: simplified chinese 3: traditional chinese 4: spanish 5: french 6: german 7: japanese 8: korean 9: arabic 10: thai 11: indonesian.
1076
1073
  * @type {string || null}
1077
1074
  */
1078
1075
  this.Unsubscribe = null;
1079
1076
 
1080
1077
  /**
1081
- * Mail trigger type. 0: non-trigger class, default type, select this type for marketing emails and non-instant emails. 1: trigger class, instant delivery emails such as captcha-intl. if the mail exceeds a certain size, the system will automatically select the non-trigger class channel.
1078
+ * <p>Mail trigger type 0: Non-trigger class, default type, select this type for marketing email, non-instant mail. 1: Trigger class, instant delivery mail such as verification code. If the mail exceeds a certain size, the system will automatically select a non-trigger type channel.</p>
1082
1079
  * @type {number || null}
1083
1080
  */
1084
1081
  this.TriggerType = null;
1085
1082
 
1086
1083
  /**
1087
- * Message-Id field in the smtp header.
1084
+ * <p>Message-Id field in the smtp header</p>
1088
1085
  * @type {string || null}
1089
1086
  */
1090
1087
  this.SmtpMessageId = null;
1091
1088
 
1092
1089
  /**
1093
- * Other fields that can be set in the smtp header.
1090
+ * <p>Other fields that can be set in the smtp header</p>
1094
1091
  * @type {string || null}
1095
1092
  */
1096
1093
  this.SmtpHeaders = null;
1097
1094
 
1098
1095
  /**
1099
- * from field in the smtp header. the domain name should be consistent with FromEmailAddress.
1096
+ * <p>The from field in the smtp header. The domain name should be consistent with the FromEmailAddress.</p>
1100
1097
  * @type {string || null}
1101
1098
  */
1102
1099
  this.HeaderFrom = null;
@@ -2862,7 +2859,7 @@ class SendEmailResponse extends AbstractModel {
2862
2859
  super();
2863
2860
 
2864
2861
  /**
2865
- * Uniquely generated message identifier for receive message.
2862
+ * <p>Uniquely generated message identifier for receiving messages.</p>
2866
2863
  * @type {string || null}
2867
2864
  */
2868
2865
  this.MessageId = null;
@@ -3411,76 +3408,73 @@ class BatchSendEmailRequest extends AbstractModel {
3411
3408
  super();
3412
3409
 
3413
3410
  /**
3414
- * Sender'S email address. please fill in the sender's email address, such as noreply@mail.qcloud.com. if you need to fill in the sender's description, please follow.
3415
- Sender &lt;email address&gt; via fill in, such as:.
3416
- Tencent cloud team &lt;noreply@mail.qcloud.com&gt;.
3411
+ * <p>Sender's email address. Please fill in the sender's email address, for example: noreply@mail.qcloud.com. If you need to fill in the sender description, please enter it via<br>sender &lt;email address&gt;, for example:<br>Tencent Cloud team &lt;noreply@mail.qcloud.com&gt;</p>
3417
3412
  * @type {string || null}
3418
3413
  */
3419
3414
  this.FromEmailAddress = null;
3420
3415
 
3421
3416
  /**
3422
- * Recipient list ID.
3417
+ * <p>Recipient list ID</p>
3423
3418
  * @type {number || null}
3424
3419
  */
3425
3420
  this.ReceiverId = null;
3426
3421
 
3427
3422
  /**
3428
- * Email subject.
3423
+ * <p>Email Subject</p>
3429
3424
  * @type {string || null}
3430
3425
  */
3431
3426
  this.Subject = null;
3432
3427
 
3433
3428
  /**
3434
- * Task type 1: send now 2: scheduled sending 3: cycle (frequency) sending.
3429
+ * <p>Task type 1: Send now 2: Scheduled sending 3: Cycle (frequency) sending</p>
3435
3430
  * @type {number || null}
3436
3431
  */
3437
3432
  this.TaskType = null;
3438
3433
 
3439
3434
  /**
3440
- * The "reply" email address of the mail. can be filled with an email address you can receive mail from, can be a personal mailbox. if left empty, the recipient's reply mail will fail to send.
3435
+ * <p>The "reply" email address of the mail. Can be filled with an email address you can receive mail, can be a personal mailbox. If left empty, the recipient's reply mail will fail to send.</p>
3441
3436
  * @type {string || null}
3442
3437
  */
3443
3438
  this.ReplyToAddresses = null;
3444
3439
 
3445
3440
  /**
3446
- * When using a template to send, fill in the related parameters of the template.
3447
- <Dx-Alert infotype="notice" title="note">this field must be specified if you have not applied for special configuration.</dx-alert>.
3441
+ * <p>Template-related parameters to fill in when sending with a template</p><blockquote class="rno-document-tips rno-document-tips-notice"> <div class="rno-document-tips-body"> <i class="rno-document-tip-icon"></i> <div class="rno-document-tip-title">Note</div> <div class="rno-document-tip-desc"><p>This field must be specified if you have not applied for special configuration</p></div> </div></blockquote>
3448
3442
  * @type {Template || null}
3449
3443
  */
3450
3444
  this.Template = null;
3451
3445
 
3452
3446
  /**
3453
- * Abandoned<Dx-Alert infotype="notice" title="description">only customers who historically applied for special configuration require the use of it. if you have not applied for special configuration, this field does not exist.</dx-alert>.
3447
+ * <p>Abandoned<blockquote class="rno-document-tips rno-document-tips-notice"> <div class="rno-document-tips-body"> <i class="rno-document-tip-icon"></i> <div class="rno-document-tip-title">Description</div> <div class="rno-document-tip-desc"><p>Only customers who historically applied for special configuration need to use this. If you have not applied for special configuration, this field does not exist.</p></div> </div></blockquote></p>
3454
3448
  * @type {Simple || null}
3455
3449
  */
3456
3450
  this.Simple = null;
3457
3451
 
3458
3452
  /**
3459
- * Send attachment when required. fill in related parameters (not supported).
3453
+ * <p>When you need to send an attachment, fill in the related parameters (not supported).</p>
3460
3454
  * @type {Array.<Attachment> || null}
3461
3455
  */
3462
3456
  this.Attachments = null;
3463
3457
 
3464
3458
  /**
3465
- * Required parameter for sending tasks periodically.
3459
+ * <p>Required parameter for sending tasks periodically</p>
3466
3460
  * @type {CycleEmailParam || null}
3467
3461
  */
3468
3462
  this.CycleParam = null;
3469
3463
 
3470
3464
  /**
3471
- * Required parameter for scheduled task assignment.
3465
+ * <p>Required parameter of scheduled task assignment</p>
3472
3466
  * @type {TimedEmailParam || null}
3473
3467
  */
3474
3468
  this.TimedParam = null;
3475
3469
 
3476
3470
  /**
3477
- * Unsubscription link options 0: do not add 1: english 2: simplified chinese 3: traditional chinese 4: spanish 5: french 6: german 7: japanese 8: korean 9: arabic 10: thai.
3471
+ * Unsubscription link options 0: do not add 1: english 2: simplified chinese 3: traditional chinese 4: spanish 5: french 6: german 7: japanese 8: korean 9: arabic 10: thai. 11: indonesian.
3478
3472
  * @type {string || null}
3479
3473
  */
3480
3474
  this.Unsubscribe = null;
3481
3475
 
3482
3476
  /**
3483
- * Whether to add an ad flag. valid values: 0 (do not add), 1 (add to the previous subject), 2 (add to the following subject).
3477
+ * <p>Whether to add an ad flag 0: do not add 1: add to the previous subject 2: add to the following subject</p>
3484
3478
  * @type {number || null}
3485
3479
  */
3486
3480
  this.ADLocation = null;
@@ -9527,19 +9527,19 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9527
9527
  this.Zone = null;
9528
9528
 
9529
9529
  /**
9530
- * Instance memory size in GB
9530
+ * Instance memory size in GB.
9531
9531
  * @type {number || null}
9532
9532
  */
9533
9533
  this.Memory = null;
9534
9534
 
9535
9535
  /**
9536
- * Instance disk size in GB
9536
+ * Instance disk size in GB.
9537
9537
  * @type {number || null}
9538
9538
  */
9539
9539
  this.Storage = null;
9540
9540
 
9541
9541
  /**
9542
- * Number of CPU cores
9542
+ * Number of CPU cores.
9543
9543
  * @type {number || null}
9544
9544
  */
9545
9545
  this.Cpu = null;
@@ -9551,13 +9551,13 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9551
9551
  this.MachineType = null;
9552
9552
 
9553
9553
  /**
9554
- * Billing mode. Valid values: `PREPAID` (monthly subscription), `POSTPAID` (pay-as-you-go).
9554
+ * Billing mode. Valid values: `PREPAID` (yearly/monthly subscription), `POSTPAID` (pay-as-you-go).
9555
9555
  * @type {string || null}
9556
9556
  */
9557
9557
  this.InstanceChargeType = null;
9558
9558
 
9559
9559
  /**
9560
- * Project ID
9560
+ * Project ID.
9561
9561
  * @type {number || null}
9562
9562
  */
9563
9563
  this.ProjectId = null;
@@ -9593,7 +9593,7 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9593
9593
  this.AutoVoucher = null;
9594
9594
 
9595
9595
  /**
9596
- * Array of voucher IDs (currently, only one voucher can be used per order)
9596
+ * Array of voucher IDs (currently, only one voucher can be used per order).
9597
9597
  * @type {Array.<string> || null}
9598
9598
  */
9599
9599
  this.VoucherIds = null;
@@ -9605,7 +9605,7 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9605
9605
  this.DBVersion = null;
9606
9606
 
9607
9607
  /**
9608
- * Auto-renewal flag, which takes effect only when purchasing a monthly subscribed instance. Valid values: `0` (auto-renewal disabled), `1` (auto-renewal enabled). Default value: `0`.
9608
+ * Auto-renewal flag, which takes effect only when purchasing a yearly/monthly subscribed instance. Valid values: `0` (auto-renewal disabled), `1` (auto-renewal enabled). Default value: `0`.
9609
9609
  * @type {number || null}
9610
9610
  */
9611
9611
  this.AutoRenewFlag = null;
@@ -9629,7 +9629,7 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9629
9629
  this.StartTime = null;
9630
9630
 
9631
9631
  /**
9632
- * Configuration of the maintenance window, which specifies the maintenance duration in hours. Hour
9632
+ * Configuration of the maintenance window, which specifies the maintenance duration in hours. Hour.
9633
9633
  * @type {number || null}
9634
9634
  */
9635
9635
  this.Span = null;
@@ -9641,7 +9641,7 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9641
9641
  this.MultiZones = null;
9642
9642
 
9643
9643
  /**
9644
- * Tags associated with the instances to be created
9644
+ * Tags associated with the instances to be created.
9645
9645
  * @type {Array.<ResourceTag> || null}
9646
9646
  */
9647
9647
  this.ResourceTags = null;
@@ -9658,6 +9658,24 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9658
9658
  */
9659
9659
  this.TimeZone = null;
9660
9660
 
9661
+ /**
9662
+ * Whether it is a multi-node architecture instance. Default value: `false`.If MultiNodes = true, the value of the MultiZones parameter must be true.
9663
+ * @type {boolean || null}
9664
+ */
9665
+ this.MultiNodes = null;
9666
+
9667
+ /**
9668
+ * The zone in which the standby node is available. Default is empty. When MultiNodes = true, the availability zones of the primary and standby nodes cannot all be the same. The minimum number of availability zones for the standby nodes is 2, and the maximum is 5.
9669
+ * @type {Array.<string> || null}
9670
+ */
9671
+ this.DrZones = null;
9672
+
9673
+ /**
9674
+ * Disk encryption identifier, 0-unencrypted, 1-encrypted.
9675
+ * @type {number || null}
9676
+ */
9677
+ this.DiskEncryptFlag = null;
9678
+
9661
9679
  }
9662
9680
 
9663
9681
  /**
@@ -9698,6 +9716,9 @@ class CreateCloudDBInstancesRequest extends AbstractModel {
9698
9716
  }
9699
9717
  this.Collation = 'Collation' in params ? params.Collation : null;
9700
9718
  this.TimeZone = 'TimeZone' in params ? params.TimeZone : null;
9719
+ this.MultiNodes = 'MultiNodes' in params ? params.MultiNodes : null;
9720
+ this.DrZones = 'DrZones' in params ? params.DrZones : null;
9721
+ this.DiskEncryptFlag = 'DiskEncryptFlag' in params ? params.DiskEncryptFlag : null;
9701
9722
 
9702
9723
  }
9703
9724
  }
@@ -10106,7 +10127,7 @@ class CreateCloudDBInstancesResponse extends AbstractModel {
10106
10127
  super();
10107
10128
 
10108
10129
  /**
10109
- * Order name
10130
+ * Order name.
10110
10131
  * @type {string || null}
10111
10132
  */
10112
10133
  this.DealName = null;
@@ -17191,37 +17191,49 @@ class CreateAccelerationDomainRequest extends AbstractModel {
17191
17191
  this.OriginInfo = null;
17192
17192
 
17193
17193
  /**
17194
- * Origin-pull protocol configuration. Values:
17195
- <li>`FOLLOW`: Follow the protocol of origin</li>
17196
- <li>`HTTP`: Send requests to the origin over HTTP</li>
17197
- <li>`HTTPS`: Send requests to the origin over HTTPS</li>
17198
- <li>Default: `FOLLOW`</li>
17194
+ * Origin-Pull protocol. valid values:.
17195
+ <Li>FOLLOW: follow protocol;</li>.
17196
+ <Li>HTTP: http protocol for origin-pull;</li>.
17197
+ <li>HTTPS: the origin server uses the HTTPS protocol.</li>defaults to FOLLOW if left blank.
17199
17198
  * @type {string || null}
17200
17199
  */
17201
17200
  this.OriginProtocol = null;
17202
17201
 
17203
17202
  /**
17204
- * Ports for HTTP origin-pull requests. Range: 1-65535. It takes effect when `OriginProtocol=FOLLOW/HTTP`. Port 80 is used if it's not specified.
17203
+ * HTTP origin port. default value 80. value range: 1–65535.
17204
+ This parameter is valid only when OriginProtocol is FOLLOW or HTTP.
17205
17205
  * @type {number || null}
17206
17206
  */
17207
17207
  this.HttpOriginPort = null;
17208
17208
 
17209
17209
  /**
17210
- * Ports for HTTPS origin-pull requests. Range: 1-65535. It takes effect when `OriginProtocol=FOLLOW/HTTPS`. Port 443 is used if it's not specified.
17210
+ * HTTPS origin port. default value 443. value range: 1–65535.
17211
+ This parameter is valid only when OriginProtocol is FOLLOW or HTTPS.
17211
17212
  * @type {number || null}
17212
17213
  */
17213
17214
  this.HttpsOriginPort = null;
17214
17215
 
17215
17216
  /**
17216
- * IPv6 status. Values:
17217
- <li>`follow`: Follow the IPv6 configuration of the site</li>
17218
- <li>`on`: Enable</li>
17219
- <li>`off`: Disable</li>
17220
- <li>Default: `follow`</li>
17217
+ * IPv6 status. valid values:.
17218
+ <li>follow: adhere to the site IPv6 configuration;</li>.
17219
+ <li>on: enabled status;</li>.
17220
+ <li>off: disabled.</li>if left empty, the default value is follow.
17221
17221
  * @type {string || null}
17222
17222
  */
17223
17223
  this.IPv6Status = null;
17224
17224
 
17225
+ /**
17226
+ * Specify the shared CNAME address for domain binding. use the default CNAME when not specified.
17227
+ Bind shared CNAME requires the scheduling policy of all domains to be consistent. the following configuration affects the scheduling policy. when inconsistent, bind shared CNAME will be processed as follows:.
17228
+ -IPv6 access: not allowed to create domain name. change IPv6Status to keep it configured the same as other domain names bound to the shared CNAME.
17229
+ -Anti-DDoS: if the selected shared CNAME has DDoS protection enabled, domain activation will enable DDoS protection by default.
17230
+ -Network optimization in the chinese mainland (international acceleration): not allowed to create a domain name. keep the network optimization in the chinese mainland (international acceleration) configuration of the current domain name consistent with the other domain names bound to the shared CNAME and try again after.
17231
+
17232
+ Note: shared CNAME is currently in beta test. if you need to use it, contact us to enable it.
17233
+ * @type {string || null}
17234
+ */
17235
+ this.SharedCNAME = null;
17236
+
17225
17237
  }
17226
17238
 
17227
17239
  /**
@@ -17243,6 +17255,7 @@ class CreateAccelerationDomainRequest extends AbstractModel {
17243
17255
  this.HttpOriginPort = 'HttpOriginPort' in params ? params.HttpOriginPort : null;
17244
17256
  this.HttpsOriginPort = 'HttpsOriginPort' in params ? params.HttpsOriginPort : null;
17245
17257
  this.IPv6Status = 'IPv6Status' in params ? params.IPv6Status : null;
17258
+ this.SharedCNAME = 'SharedCNAME' in params ? params.SharedCNAME : null;
17246
17259
 
17247
17260
  }
17248
17261
  }
@@ -21088,27 +21101,27 @@ class OriginInfo extends AbstractModel {
21088
21101
  super();
21089
21102
 
21090
21103
  /**
21091
- * Origin server type, with values:
21092
- <li>IP_DOMAIN: IPv4, IPv6, or domain name type origin server;</li>
21093
- <li>COS: Tencent Cloud COS origin server;</li>
21094
- <li>AWS_S3: AWS S3 origin server;</li>
21095
- <li>ORIGIN_GROUP: origin server group type origin server;</li>
21096
- <li>VOD: Video on Demand;</li>
21097
- <li>SPACE: origin server uninstallation. Currently only available to the allowlist;</li>
21104
+ * Origin server type. Valid values:
21105
+ <li>IP_DOMAIN: IPV4, IPV6, or DOMAIN type origin server.</li>.
21106
+ <Li>COS: tencent cloud cos origin server;</li>.
21107
+ <Li>AWS_S3: aws s3 cos origin server;</li>.
21108
+ <Li>ORIGIN_GROUP: origin server group type origin server;</li>.
21109
+ <Li>VOD: video on demand;</li>.
21110
+ <Li>SPACE: origin server uninstallation. currently only available to the allowlist;</li>.
21098
21111
  <li>LB: load balancing. Currently only available to the allowlist. </li>
21099
21112
  * @type {string || null}
21100
21113
  */
21101
21114
  this.OriginType = null;
21102
21115
 
21103
21116
  /**
21104
- * Origin server address, which varies according to the value of OriginType:
21105
- <li>When OriginType = IP_DOMAIN, fill in an IPv4 address, an IPv6 address, or a domain name;</li>
21106
- <li>When OriginType = COS, fill in the access domain name of the COS bucket;</li>
21107
- <li>When OriginType = AWS_S3, fill in the access domain name of the S3 bucket;</li>
21108
- <li>When OriginType = ORIGIN_GROUP, fill in the origin server group ID;</li>
21109
- <li>When OriginType = VOD, fill in the VOD application ID;</li>
21110
- <li>When OriginType = LB, fill in the Cloud Load Balancer instance ID. This feature is currently only available to the allowlist;</li>
21111
- <li>When OriginType = SPACE, fill in the origin server uninstallation space ID. This feature is currently only available to the allowlist.</li>
21117
+ * Origin server address, which varies according to the value of OriginType:.
21118
+ <li>When OriginType = IP_DOMAIN, this parameter should be an IPv4 address, an IPv6 address, or a DOMAIN name;</li>.
21119
+ <li>When OriginType = COS, this parameter is the access domain of the COS bucket;</li>.
21120
+ <li>When OriginType = AWS_S3, this parameter is the access domain of the S3 bucket;</li>.
21121
+ <li>When OriginType = ORIGIN_GROUP, this parameter should be the ORIGIN server GROUP ID. if referencing an ORIGIN server GROUP from other sites, the format is {ORIGIN server GROUP ID}@{ZoneID}, such as og-testorigin@zone-38moq1z10wwwy;</li>.
21122
+ <li>When OriginType = VOD, this parameter is the VOD application ID;</li>.
21123
+ <li>When OriginType = LB, this parameter is the cloud load balancer instance ID. this feature is currently only available to the allowlist. if referencing a load balancer from other sites, the format is {cloud load balancer ID}@{ZoneID}, such as LB-2rxpamcyqfzg@zone-38moq1z10wwwy;</li>.
21124
+ <li>When OriginType = SPACE, this parameter specifies the origin server uninstallation SPACE ID. this feature is currently only available to the allowlist.</li>.
21112
21125
  * @type {string || null}
21113
21126
  */
21114
21127
  this.Origin = null;
@@ -21120,10 +21133,9 @@ class OriginInfo extends AbstractModel {
21120
21133
  this.BackupOrigin = null;
21121
21134
 
21122
21135
  /**
21123
- * Whether access to the private Cloud Object Storage origin server is allowed. This parameter is valid only when OriginType is COS or AWS_S3. Valid values:
21124
- <li>on: Enable private authentication;</li>
21125
- <li>off: Disable private authentication.</li>
21126
- If it is not specified, the default value is off.
21136
+ * Whether access to the private object storage origin server is allowed. this parameter is valid only when the origin server type OriginType is COS or AWS_S3. valid values:.
21137
+ <Li>On: enable private authentication;</li>.
21138
+ <Li>Off: disable private authentication.</li>if left empty, the default value is off.
21127
21139
  * @type {string || null}
21128
21140
  */
21129
21141
  this.PrivateAccess = null;
@@ -21135,10 +21147,10 @@ If it is not specified, the default value is off.
21135
21147
  this.PrivateParameters = null;
21136
21148
 
21137
21149
  /**
21138
- * Custom origin server HOST header. this parameter is valid only when OriginType=IP_DOMAIN.If the OriginType is another type of origin, this parameter does not need to be passed in, otherwise an error will be reported.
21139
- If OriginType is COS or AWS_S3, the HOST header for origin-pull will remain consistent with the origin server domain name.
21140
- If OriginType is ORIGIN_GROUP, the HOST header follows the ORIGIN site GROUP configuration. if not configured, it defaults to the acceleration domain name.
21141
- If OriginType is VOD or SPACE, no configuration is required for this header, and the domain name takes effect based on the corresponding origin.
21150
+ * Custom origin server HOST header. this parameter is valid only when OriginType = IP_DOMAIN. when OriginType is other types, this parameter is not required, otherwise error will occur.
21151
+ When OriginType is COS or AWS_S3, the origin-pull HOST header will remain consistent with the origin server domain name.
21152
+ When OriginType is ORIGIN_GROUP, the HOST header follows the ORIGIN site GROUP configuration. if not configured, it defaults to the acceleration domain name.
21153
+ When OriginType is VOD or SPACE, no configuration required for this header, the corresponding domain name takes effect.
21142
21154
  * @type {string || null}
21143
21155
  */
21144
21156
  this.HostHeader = null;
@@ -21164,8 +21176,7 @@ If OriginType is VOD or SPACE, no configuration is required for this header, and
21164
21176
  this.VodeoBucketId = null;
21165
21177
 
21166
21178
  /**
21167
- * VOD origin-pull scope. this parameter is valid only when OriginType = VOD. valid values: <li>all: all files in the VOD application corresponding to the current origin server. the default value is all;</li> <li>bucket: files in a specified bucket under the VOD application corresponding to the current origin server. specify the bucket by the parameter VodBucketId.</li>.
21168
- </li>
21179
+ * VOD origin range. this parameter is valid only when OriginType = VOD. valid values: <li>all: all files in the VOD application corresponding to the current origin server.</li><li>bucket: files in a specified bucket under the VOD application corresponding to the current origin server. use parameter VodBucketId to specify the bucket.</li>default value is all if left empty.
21169
21180
  * @type {string || null}
21170
21181
  */
21171
21182
  this.VodOriginScope = null;
@@ -3365,25 +3365,25 @@ class CreateVpcEndPointRequest extends AbstractModel {
3365
3365
  super();
3366
3366
 
3367
3367
  /**
3368
- * VPC instance ID
3368
+ * VPC instance ID. obtain through the API [DescribeVpcs](https://www.tencentcloud.comom/document/product/1108/43663?from_cn_redirect=1).
3369
3369
  * @type {string || null}
3370
3370
  */
3371
3371
  this.VpcId = null;
3372
3372
 
3373
3373
  /**
3374
- * Subnet instance ID
3374
+ * Subnet instance ID. can be obtained through the [DescribeSubnets](https://www.tencentcloud.comom/document/product/215/15784?from_cn_redirect=1) api.
3375
3375
  * @type {string || null}
3376
3376
  */
3377
3377
  this.SubnetId = null;
3378
3378
 
3379
3379
  /**
3380
- * Endpoint name
3380
+ * Endpoint name. limited to 60 characters.
3381
3381
  * @type {string || null}
3382
3382
  */
3383
3383
  this.EndPointName = null;
3384
3384
 
3385
3385
  /**
3386
- * Endpoint service ID
3386
+ * Endpoint service ID, which can be obtained through the [DescribeVpcEndPointService](https://www.tencentcloud.comom/document/product/215/54678?from_cn_redirect=1) api.
3387
3387
  * @type {string || null}
3388
3388
  */
3389
3389
  this.EndPointServiceId = null;
@@ -3395,11 +3395,23 @@ class CreateVpcEndPointRequest extends AbstractModel {
3395
3395
  this.EndPointVip = null;
3396
3396
 
3397
3397
  /**
3398
- * Security group ID
3398
+ * Security group ID. can be obtained through the API [DescribeSecurityGroups](https://www.tencentcloud.comom/document/product/215/15808?from_cn_redirect=1).
3399
3399
  * @type {string || null}
3400
3400
  */
3401
3401
  this.SecurityGroupId = null;
3402
3402
 
3403
+ /**
3404
+ * List of tags to be bound, for example, [{"Key": "city", "Value": "shanghai"}].
3405
+ * @type {Array.<Tag> || null}
3406
+ */
3407
+ this.Tags = null;
3408
+
3409
+ /**
3410
+ * Protocol type. supports Ipv4 and Ipv6. default is Ipv4.
3411
+ * @type {string || null}
3412
+ */
3413
+ this.IpAddressType = null;
3414
+
3403
3415
  }
3404
3416
 
3405
3417
  /**
@@ -3416,6 +3428,16 @@ class CreateVpcEndPointRequest extends AbstractModel {
3416
3428
  this.EndPointVip = 'EndPointVip' in params ? params.EndPointVip : null;
3417
3429
  this.SecurityGroupId = 'SecurityGroupId' in params ? params.SecurityGroupId : null;
3418
3430
 
3431
+ if (params.Tags) {
3432
+ this.Tags = new Array();
3433
+ for (let z in params.Tags) {
3434
+ let obj = new Tag();
3435
+ obj.deserialize(params.Tags[z]);
3436
+ this.Tags.push(obj);
3437
+ }
3438
+ }
3439
+ this.IpAddressType = 'IpAddressType' in params ? params.IpAddressType : null;
3440
+
3419
3441
  }
3420
3442
  }
3421
3443
 
@@ -16118,7 +16140,7 @@ class EndPoint extends AbstractModel {
16118
16140
  this.EndPointId = null;
16119
16141
 
16120
16142
  /**
16121
- * VPC ID
16143
+ * The unique ID of the VPC. obtain through the API [DescribeVpcs](https://www.tencentcloud.comom/document/product/215/15778?from_cn_redirect=1).
16122
16144
  * @type {string || null}
16123
16145
  */
16124
16146
  this.VpcId = null;
@@ -16172,7 +16194,7 @@ class EndPoint extends AbstractModel {
16172
16194
  this.State = null;
16173
16195
 
16174
16196
  /**
16175
- * Creation time
16197
+ * Creation time. format: YYYY-MM-DD HH:MM:SS.
16176
16198
  * @type {string || null}
16177
16199
  */
16178
16200
  this.CreateTime = null;
@@ -16184,12 +16206,23 @@ class EndPoint extends AbstractModel {
16184
16206
  this.GroupSet = null;
16185
16207
 
16186
16208
  /**
16187
- * Endpoint service name
16188
- Note: this field may return `null`, indicating that no valid values can be obtained.
16209
+ * Endpoint service name.
16189
16210
  * @type {string || null}
16190
16211
  */
16191
16212
  this.ServiceName = null;
16192
16213
 
16214
+ /**
16215
+ * CDC cluster unique ID.
16216
+ * @type {string || null}
16217
+ */
16218
+ this.CdcId = null;
16219
+
16220
+ /**
16221
+ * Tag key-value pair.
16222
+ * @type {Array.<Tag> || null}
16223
+ */
16224
+ this.TagSet = null;
16225
+
16193
16226
  }
16194
16227
 
16195
16228
  /**
@@ -16212,6 +16245,16 @@ Note: this field may return `null`, indicating that no valid values can be obtai
16212
16245
  this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
16213
16246
  this.GroupSet = 'GroupSet' in params ? params.GroupSet : null;
16214
16247
  this.ServiceName = 'ServiceName' in params ? params.ServiceName : null;
16248
+ this.CdcId = 'CdcId' in params ? params.CdcId : null;
16249
+
16250
+ if (params.TagSet) {
16251
+ this.TagSet = new Array();
16252
+ for (let z in params.TagSet) {
16253
+ let obj = new Tag();
16254
+ obj.deserialize(params.TagSet[z]);
16255
+ this.TagSet.push(obj);
16256
+ }
16257
+ }
16215
16258
 
16216
16259
  }
16217
16260
  }