tencentcloud-sdk-nodejs-intl-en 3.0.361 → 3.0.362
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
|
@@ -173,7 +173,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
/**
|
|
176
|
-
*
|
|
176
|
+
* Custom HTTPS forwarding configuration
|
|
177
177
|
* @class
|
|
178
178
|
*/
|
|
179
179
|
class AdvanceHttps extends AbstractModel {
|
|
@@ -181,37 +181,46 @@ class AdvanceHttps extends AbstractModel {
|
|
|
181
181
|
super();
|
|
182
182
|
|
|
183
183
|
/**
|
|
184
|
-
*
|
|
184
|
+
* Custom TLS data switch
|
|
185
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
185
186
|
* @type {string || null}
|
|
186
187
|
*/
|
|
187
188
|
this.CustomTlsStatus = null;
|
|
188
189
|
|
|
189
190
|
/**
|
|
190
|
-
*
|
|
191
|
+
* Specifies the TLS version. Valid values: `TLSv1`, `TLSV1.1`, `TLSV1.2`, and `TLSv1.3`. Only consecutive versions can be enabled at the same time.
|
|
192
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
191
193
|
* @type {Array.<string> || null}
|
|
192
194
|
*/
|
|
193
195
|
this.TlsVersion = null;
|
|
194
196
|
|
|
195
197
|
/**
|
|
196
|
-
*
|
|
198
|
+
* Custom encryption suite
|
|
199
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
197
200
|
* @type {string || null}
|
|
198
201
|
*/
|
|
199
202
|
this.Cipher = null;
|
|
200
203
|
|
|
201
204
|
/**
|
|
202
|
-
*
|
|
205
|
+
* Origin authentication type
|
|
206
|
+
`off`: disable authentication
|
|
207
|
+
`oneWay`: authenticate the origin
|
|
208
|
+
`twoWay`: two-way authentication
|
|
209
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
203
210
|
* @type {string || null}
|
|
204
211
|
*/
|
|
205
212
|
this.VerifyOriginType = null;
|
|
206
213
|
|
|
207
214
|
/**
|
|
208
|
-
*
|
|
215
|
+
* Information of the origin-pull certificate
|
|
216
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
209
217
|
* @type {ServerCert || null}
|
|
210
218
|
*/
|
|
211
219
|
this.CertInfo = null;
|
|
212
220
|
|
|
213
221
|
/**
|
|
214
|
-
*
|
|
222
|
+
* Information of the origin server certificate
|
|
223
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
215
224
|
* @type {ClientCert || null}
|
|
216
225
|
*/
|
|
217
226
|
this.OriginCertInfo = null;
|
|
@@ -2483,7 +2492,8 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
2483
2492
|
this.PathBasedOrigin = null;
|
|
2484
2493
|
|
|
2485
2494
|
/**
|
|
2486
|
-
*
|
|
2495
|
+
* Advanced HTTPS forwarding configuration
|
|
2496
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
2487
2497
|
* @type {AdvanceHttps || null}
|
|
2488
2498
|
*/
|
|
2489
2499
|
this.AdvanceHttps = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.362";
|
|
2
2
|
module.exports = sdkVersion
|