tencentcloud-sdk-nodejs-intl-en 3.0.507 → 3.0.508

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.507",
3
+ "version": "3.0.508",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.507";
1
+ const sdkVersion = "3.0.508";
2
2
  module.exports = sdkVersion
@@ -670,7 +670,7 @@ class CreatePrivateZoneRequest extends AbstractModel {
670
670
  this.Remark = null;
671
671
 
672
672
  /**
673
- * Whether to enable subdomain recursive DNS. Valid values: ENABLED, DISABLED. Default value: DISABLED
673
+ * Whether to enable subdomain recursive DNS. Valid values: `ENABLED` (default) and `DISABLED`.
674
674
  * @type {string || null}
675
675
  */
676
676
  this.DnsForwardStatus = null;
@@ -687,6 +687,12 @@ class CreatePrivateZoneRequest extends AbstractModel {
687
687
  */
688
688
  this.AccountVpcSet = null;
689
689
 
690
+ /**
691
+ * Whether to enable CNAME flattening. Valid values: `ENABLED` (default) and `DISABLED`.
692
+ * @type {string || null}
693
+ */
694
+ this.CnameSpeedupStatus = null;
695
+
690
696
  }
691
697
 
692
698
  /**
@@ -735,6 +741,7 @@ class CreatePrivateZoneRequest extends AbstractModel {
735
741
  this.AccountVpcSet.push(obj);
736
742
  }
737
743
  }
744
+ this.CnameSpeedupStatus = 'CnameSpeedupStatus' in params ? params.CnameSpeedupStatus : null;
738
745
 
739
746
  }
740
747
  }
@@ -951,6 +958,12 @@ class ModifyPrivateZoneRequest extends AbstractModel {
951
958
  */
952
959
  this.DnsForwardStatus = null;
953
960
 
961
+ /**
962
+ * Whether to enable CNAME flattening. Valid values: `ENABLED` and `DISABLED`.
963
+ * @type {string || null}
964
+ */
965
+ this.CnameSpeedupStatus = null;
966
+
954
967
  }
955
968
 
956
969
  /**
@@ -963,6 +976,7 @@ class ModifyPrivateZoneRequest extends AbstractModel {
963
976
  this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
964
977
  this.Remark = 'Remark' in params ? params.Remark : null;
965
978
  this.DnsForwardStatus = 'DnsForwardStatus' in params ? params.DnsForwardStatus : null;
979
+ this.CnameSpeedupStatus = 'CnameSpeedupStatus' in params ? params.CnameSpeedupStatus : null;
966
980
 
967
981
  }
968
982
  }
@@ -5501,17 +5501,29 @@ Note: This field may return `null`, indicating that no valid values can be obtai
5501
5501
  this.CrossBackupSaveDays = null;
5502
5502
 
5503
5503
  /**
5504
- *
5504
+ * Domain name of the public network address
5505
5505
  * @type {string || null}
5506
5506
  */
5507
5507
  this.DnsPodDomain = null;
5508
5508
 
5509
5509
  /**
5510
- *
5510
+ * Port number of the public network
5511
5511
  * @type {number || null}
5512
5512
  */
5513
5513
  this.TgwWanVPort = null;
5514
5514
 
5515
+ /**
5516
+ *
5517
+ * @type {string || null}
5518
+ */
5519
+ this.Collation = null;
5520
+
5521
+ /**
5522
+ *
5523
+ * @type {string || null}
5524
+ */
5525
+ this.TimeZone = null;
5526
+
5515
5527
  }
5516
5528
 
5517
5529
  /**
@@ -5577,6 +5589,8 @@ Note: This field may return `null`, indicating that no valid values can be obtai
5577
5589
  this.CrossBackupSaveDays = 'CrossBackupSaveDays' in params ? params.CrossBackupSaveDays : null;
5578
5590
  this.DnsPodDomain = 'DnsPodDomain' in params ? params.DnsPodDomain : null;
5579
5591
  this.TgwWanVPort = 'TgwWanVPort' in params ? params.TgwWanVPort : null;
5592
+ this.Collation = 'Collation' in params ? params.Collation : null;
5593
+ this.TimeZone = 'TimeZone' in params ? params.TimeZone : null;
5580
5594
 
5581
5595
  }
5582
5596
  }