tencentcloud-sdk-nodejs-intl-en 3.0.1331 → 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.1331",
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.1331";
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;
@@ -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
  }