tencentcloud-sdk-nodejs-intl-en 3.0.333 → 3.0.334

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.333",
3
+ "version": "3.0.334",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.333";
1
+ const sdkVersion = "3.0.334";
2
2
  module.exports = sdkVersion
@@ -1064,6 +1064,12 @@ Dedicated primary node disk size in GB, which is optional. If passed in, it can
1064
1064
  */
1065
1065
  this.WebNodeTypeInfo = null;
1066
1066
 
1067
+ /**
1068
+ * Valid values: `https`, `http` (default)
1069
+ * @type {string || null}
1070
+ */
1071
+ this.Protocol = null;
1072
+
1067
1073
  }
1068
1074
 
1069
1075
  /**
@@ -1131,6 +1137,7 @@ Dedicated primary node disk size in GB, which is optional. If passed in, it can
1131
1137
  obj.deserialize(params.WebNodeTypeInfo)
1132
1138
  this.WebNodeTypeInfo = obj;
1133
1139
  }
1140
+ this.Protocol = 'Protocol' in params ? params.Protocol : null;
1134
1141
 
1135
1142
  }
1136
1143
  }
@@ -1506,6 +1513,20 @@ Note: this field may return `null`, indicating that no valid values can be obtai
1506
1513
  */
1507
1514
  this.Jdk = null;
1508
1515
 
1516
+ /**
1517
+ * Cluster network communication protocol
1518
+ Note: this field may return `null`, indicating that no valid values can be obtained.
1519
+ * @type {string || null}
1520
+ */
1521
+ this.Protocol = null;
1522
+
1523
+ /**
1524
+ * Security group ID
1525
+ Note: this field may return `null`, indicating that no valid values can be obtained.
1526
+ * @type {Array.<string> || null}
1527
+ */
1528
+ this.SecurityGroups = null;
1529
+
1509
1530
  }
1510
1531
 
1511
1532
  /**
@@ -1631,6 +1652,8 @@ Note: this field may return `null`, indicating that no valid values can be obtai
1631
1652
  this.WebNodeTypeInfo = obj;
1632
1653
  }
1633
1654
  this.Jdk = 'Jdk' in params ? params.Jdk : null;
1655
+ this.Protocol = 'Protocol' in params ? params.Protocol : null;
1656
+ this.SecurityGroups = 'SecurityGroups' in params ? params.SecurityGroups : null;
1634
1657
 
1635
1658
  }
1636
1659
  }
@@ -2124,6 +2147,30 @@ Dedicated primary node disk size in GB. This is 50 GB by default and currently c
2124
2147
  */
2125
2148
  this.WebNodeTypeInfo = null;
2126
2149
 
2150
+ /**
2151
+ * Whether to switch to the new network architecture
2152
+ * @type {string || null}
2153
+ */
2154
+ this.SwitchPrivateLink = null;
2155
+
2156
+ /**
2157
+ * Whether to enable Cerebro
2158
+ * @type {boolean || null}
2159
+ */
2160
+ this.EnableCerebro = null;
2161
+
2162
+ /**
2163
+ * Cerebro public network access status
2164
+ * @type {string || null}
2165
+ */
2166
+ this.CerebroPublicAccess = null;
2167
+
2168
+ /**
2169
+ * Cerebro private network access status
2170
+ * @type {string || null}
2171
+ */
2172
+ this.CerebroPrivateAccess = null;
2173
+
2127
2174
  }
2128
2175
 
2129
2176
  /**
@@ -2194,6 +2241,10 @@ Dedicated primary node disk size in GB. This is 50 GB by default and currently c
2194
2241
  obj.deserialize(params.WebNodeTypeInfo)
2195
2242
  this.WebNodeTypeInfo = obj;
2196
2243
  }
2244
+ this.SwitchPrivateLink = 'SwitchPrivateLink' in params ? params.SwitchPrivateLink : null;
2245
+ this.EnableCerebro = 'EnableCerebro' in params ? params.EnableCerebro : null;
2246
+ this.CerebroPublicAccess = 'CerebroPublicAccess' in params ? params.CerebroPublicAccess : null;
2247
+ this.CerebroPrivateAccess = 'CerebroPrivateAccess' in params ? params.CerebroPrivateAccess : null;
2197
2248
 
2198
2249
  }
2199
2250
  }