tencentcloud-sdk-nodejs-intl-en 3.0.1275 → 3.0.1277
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 +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +230 -32
- package/tencentcloud/cynosdb/v20190107/models.js +6988 -3416
- package/tencentcloud/monitor/v20180724/models.js +7 -7
- package/tencentcloud/monitor/v20180724/monitor_client.js +1 -1
- package/tencentcloud/teo/v20220901/models.js +1232 -837
- package/tencentcloud/teo/v20220901/teo_client.js +43 -1
- package/tencentcloud/trtc/v20190722/trtc_client.js +12 -55
|
@@ -1021,6 +1021,51 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1021
1021
|
}
|
|
1022
1022
|
}
|
|
1023
1023
|
|
|
1024
|
+
/**
|
|
1025
|
+
* Multi-Channel gateway example instance binding relationship with origin IP ranges and origin IP range details.
|
|
1026
|
+
* @class
|
|
1027
|
+
*/
|
|
1028
|
+
class MultiPathGatewayOriginACLInfo extends AbstractModel {
|
|
1029
|
+
constructor(){
|
|
1030
|
+
super();
|
|
1031
|
+
|
|
1032
|
+
/**
|
|
1033
|
+
* Describes the currently effective IP range for origin servers.
|
|
1034
|
+
* @type {MultiPathGatewayCurrentOriginACL || null}
|
|
1035
|
+
*/
|
|
1036
|
+
this.MultiPathGatewayCurrentOriginACL = null;
|
|
1037
|
+
|
|
1038
|
+
/**
|
|
1039
|
+
* When the origin IP range is updated, this field will be returned with the next version's effective origin IP range, including a comparison with the current origin IP range. this field is empty if not updated.
|
|
1040
|
+
* @type {MultiPathGatewayNextOriginACL || null}
|
|
1041
|
+
*/
|
|
1042
|
+
this.MultiPathGatewayNextOriginACL = null;
|
|
1043
|
+
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
/**
|
|
1047
|
+
* @private
|
|
1048
|
+
*/
|
|
1049
|
+
deserialize(params) {
|
|
1050
|
+
if (!params) {
|
|
1051
|
+
return;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
if (params.MultiPathGatewayCurrentOriginACL) {
|
|
1055
|
+
let obj = new MultiPathGatewayCurrentOriginACL();
|
|
1056
|
+
obj.deserialize(params.MultiPathGatewayCurrentOriginACL)
|
|
1057
|
+
this.MultiPathGatewayCurrentOriginACL = obj;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
if (params.MultiPathGatewayNextOriginACL) {
|
|
1061
|
+
let obj = new MultiPathGatewayNextOriginACL();
|
|
1062
|
+
obj.deserialize(params.MultiPathGatewayNextOriginACL)
|
|
1063
|
+
this.MultiPathGatewayNextOriginACL = obj;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1024
1069
|
/**
|
|
1025
1070
|
* HTTP header setting rules.
|
|
1026
1071
|
* @class
|
|
@@ -16041,6 +16086,34 @@ class DeviceProfile extends AbstractModel {
|
|
|
16041
16086
|
}
|
|
16042
16087
|
}
|
|
16043
16088
|
|
|
16089
|
+
/**
|
|
16090
|
+
* ConfirmMultiPathGatewayOriginACL response structure.
|
|
16091
|
+
* @class
|
|
16092
|
+
*/
|
|
16093
|
+
class ConfirmMultiPathGatewayOriginACLResponse extends AbstractModel {
|
|
16094
|
+
constructor(){
|
|
16095
|
+
super();
|
|
16096
|
+
|
|
16097
|
+
/**
|
|
16098
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
16099
|
+
* @type {string || null}
|
|
16100
|
+
*/
|
|
16101
|
+
this.RequestId = null;
|
|
16102
|
+
|
|
16103
|
+
}
|
|
16104
|
+
|
|
16105
|
+
/**
|
|
16106
|
+
* @private
|
|
16107
|
+
*/
|
|
16108
|
+
deserialize(params) {
|
|
16109
|
+
if (!params) {
|
|
16110
|
+
return;
|
|
16111
|
+
}
|
|
16112
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
16113
|
+
|
|
16114
|
+
}
|
|
16115
|
+
}
|
|
16116
|
+
|
|
16044
16117
|
/**
|
|
16045
16118
|
* CreateJustInTimeTranscodeTemplate request structure.
|
|
16046
16119
|
* @class
|
|
@@ -16421,6 +16494,46 @@ class DownloadL4LogsResponse extends AbstractModel {
|
|
|
16421
16494
|
}
|
|
16422
16495
|
}
|
|
16423
16496
|
|
|
16497
|
+
/**
|
|
16498
|
+
* DescribeMultiPathGatewayOriginACL response structure.
|
|
16499
|
+
* @class
|
|
16500
|
+
*/
|
|
16501
|
+
class DescribeMultiPathGatewayOriginACLResponse extends AbstractModel {
|
|
16502
|
+
constructor(){
|
|
16503
|
+
super();
|
|
16504
|
+
|
|
16505
|
+
/**
|
|
16506
|
+
* Describes the binding relationship between the multi-channel gateway instance and the origin IP ranges.
|
|
16507
|
+
* @type {MultiPathGatewayOriginACLInfo || null}
|
|
16508
|
+
*/
|
|
16509
|
+
this.MultiPathGatewayOriginACLInfo = null;
|
|
16510
|
+
|
|
16511
|
+
/**
|
|
16512
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
16513
|
+
* @type {string || null}
|
|
16514
|
+
*/
|
|
16515
|
+
this.RequestId = null;
|
|
16516
|
+
|
|
16517
|
+
}
|
|
16518
|
+
|
|
16519
|
+
/**
|
|
16520
|
+
* @private
|
|
16521
|
+
*/
|
|
16522
|
+
deserialize(params) {
|
|
16523
|
+
if (!params) {
|
|
16524
|
+
return;
|
|
16525
|
+
}
|
|
16526
|
+
|
|
16527
|
+
if (params.MultiPathGatewayOriginACLInfo) {
|
|
16528
|
+
let obj = new MultiPathGatewayOriginACLInfo();
|
|
16529
|
+
obj.deserialize(params.MultiPathGatewayOriginACLInfo)
|
|
16530
|
+
this.MultiPathGatewayOriginACLInfo = obj;
|
|
16531
|
+
}
|
|
16532
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
16533
|
+
|
|
16534
|
+
}
|
|
16535
|
+
}
|
|
16536
|
+
|
|
16424
16537
|
/**
|
|
16425
16538
|
* BindSharedCNAME request structure.
|
|
16426
16539
|
* @class
|
|
@@ -24593,6 +24706,82 @@ If this field is not specified, an application proxy rule will not be created.
|
|
|
24593
24706
|
}
|
|
24594
24707
|
}
|
|
24595
24708
|
|
|
24709
|
+
/**
|
|
24710
|
+
* When the origin IP range is updated, this field will be returned with the next version's effective origin IP range, including a comparison with the currently effective origin IP range.
|
|
24711
|
+
* @class
|
|
24712
|
+
*/
|
|
24713
|
+
class MultiPathGatewayNextOriginACL extends AbstractModel {
|
|
24714
|
+
constructor(){
|
|
24715
|
+
super();
|
|
24716
|
+
|
|
24717
|
+
/**
|
|
24718
|
+
* Specifies the version number.
|
|
24719
|
+
* @type {number || null}
|
|
24720
|
+
*/
|
|
24721
|
+
this.Version = null;
|
|
24722
|
+
|
|
24723
|
+
/**
|
|
24724
|
+
* Describes the IP range details for origin servers.
|
|
24725
|
+
* @type {Addresses || null}
|
|
24726
|
+
*/
|
|
24727
|
+
this.EntireAddresses = null;
|
|
24728
|
+
|
|
24729
|
+
/**
|
|
24730
|
+
* The latest origin IP range newly added compared with the origin IP range in MultiPathGatewayCurrentOrginACL.
|
|
24731
|
+
* @type {Addresses || null}
|
|
24732
|
+
*/
|
|
24733
|
+
this.AddedAddresses = null;
|
|
24734
|
+
|
|
24735
|
+
/**
|
|
24736
|
+
* Specifies the latest IP address range removed from the origin IP range in MultiPathGatewayCurrentOrginACL compared with the original.
|
|
24737
|
+
* @type {Addresses || null}
|
|
24738
|
+
*/
|
|
24739
|
+
this.RemovedAddresses = null;
|
|
24740
|
+
|
|
24741
|
+
/**
|
|
24742
|
+
* The latest origin IP range unchanged compared with the origin IP range in MultiPathGatewayCurrentOrginACL.
|
|
24743
|
+
* @type {Addresses || null}
|
|
24744
|
+
*/
|
|
24745
|
+
this.NoChangeAddresses = null;
|
|
24746
|
+
|
|
24747
|
+
}
|
|
24748
|
+
|
|
24749
|
+
/**
|
|
24750
|
+
* @private
|
|
24751
|
+
*/
|
|
24752
|
+
deserialize(params) {
|
|
24753
|
+
if (!params) {
|
|
24754
|
+
return;
|
|
24755
|
+
}
|
|
24756
|
+
this.Version = 'Version' in params ? params.Version : null;
|
|
24757
|
+
|
|
24758
|
+
if (params.EntireAddresses) {
|
|
24759
|
+
let obj = new Addresses();
|
|
24760
|
+
obj.deserialize(params.EntireAddresses)
|
|
24761
|
+
this.EntireAddresses = obj;
|
|
24762
|
+
}
|
|
24763
|
+
|
|
24764
|
+
if (params.AddedAddresses) {
|
|
24765
|
+
let obj = new Addresses();
|
|
24766
|
+
obj.deserialize(params.AddedAddresses)
|
|
24767
|
+
this.AddedAddresses = obj;
|
|
24768
|
+
}
|
|
24769
|
+
|
|
24770
|
+
if (params.RemovedAddresses) {
|
|
24771
|
+
let obj = new Addresses();
|
|
24772
|
+
obj.deserialize(params.RemovedAddresses)
|
|
24773
|
+
this.RemovedAddresses = obj;
|
|
24774
|
+
}
|
|
24775
|
+
|
|
24776
|
+
if (params.NoChangeAddresses) {
|
|
24777
|
+
let obj = new Addresses();
|
|
24778
|
+
obj.deserialize(params.NoChangeAddresses)
|
|
24779
|
+
this.NoChangeAddresses = obj;
|
|
24780
|
+
}
|
|
24781
|
+
|
|
24782
|
+
}
|
|
24783
|
+
}
|
|
24784
|
+
|
|
24596
24785
|
/**
|
|
24597
24786
|
* CC configuration item.
|
|
24598
24787
|
* @class
|
|
@@ -29110,328 +29299,30 @@ class DescribeIdentificationsResponse extends AbstractModel {
|
|
|
29110
29299
|
}
|
|
29111
29300
|
|
|
29112
29301
|
/**
|
|
29113
|
-
*
|
|
29114
|
-
* @class
|
|
29115
|
-
*/
|
|
29116
|
-
class DeleteL4ProxyResponse extends AbstractModel {
|
|
29117
|
-
constructor(){
|
|
29118
|
-
super();
|
|
29119
|
-
|
|
29120
|
-
/**
|
|
29121
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29122
|
-
* @type {string || null}
|
|
29123
|
-
*/
|
|
29124
|
-
this.RequestId = null;
|
|
29125
|
-
|
|
29126
|
-
}
|
|
29127
|
-
|
|
29128
|
-
/**
|
|
29129
|
-
* @private
|
|
29130
|
-
*/
|
|
29131
|
-
deserialize(params) {
|
|
29132
|
-
if (!params) {
|
|
29133
|
-
return;
|
|
29134
|
-
}
|
|
29135
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29136
|
-
|
|
29137
|
-
}
|
|
29138
|
-
}
|
|
29139
|
-
|
|
29140
|
-
/**
|
|
29141
|
-
* ModifyApplicationProxyRuleStatus response structure.
|
|
29142
|
-
* @class
|
|
29143
|
-
*/
|
|
29144
|
-
class ModifyApplicationProxyRuleStatusResponse extends AbstractModel {
|
|
29145
|
-
constructor(){
|
|
29146
|
-
super();
|
|
29147
|
-
|
|
29148
|
-
/**
|
|
29149
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29150
|
-
* @type {string || null}
|
|
29151
|
-
*/
|
|
29152
|
-
this.RequestId = null;
|
|
29153
|
-
|
|
29154
|
-
}
|
|
29155
|
-
|
|
29156
|
-
/**
|
|
29157
|
-
* @private
|
|
29158
|
-
*/
|
|
29159
|
-
deserialize(params) {
|
|
29160
|
-
if (!params) {
|
|
29161
|
-
return;
|
|
29162
|
-
}
|
|
29163
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29164
|
-
|
|
29165
|
-
}
|
|
29166
|
-
}
|
|
29167
|
-
|
|
29168
|
-
/**
|
|
29169
|
-
* Managed rule automatic update option.
|
|
29170
|
-
* @class
|
|
29171
|
-
*/
|
|
29172
|
-
class ManagedRuleAutoUpdate extends AbstractModel {
|
|
29173
|
-
constructor(){
|
|
29174
|
-
super();
|
|
29175
|
-
|
|
29176
|
-
/**
|
|
29177
|
-
* Enable automatic update to the latest version or not. Values: <li>`on`: enabled</li> <li>`off`: disabled</li>.
|
|
29178
|
-
* @type {string || null}
|
|
29179
|
-
*/
|
|
29180
|
-
this.AutoUpdateToLatestVersion = null;
|
|
29181
|
-
|
|
29182
|
-
/**
|
|
29183
|
-
* Current version, compliant with ISO 8601 standard format, such as 2023-12-21T12:00:32Z, empty by default, output parameter only.
|
|
29184
|
-
* @type {string || null}
|
|
29185
|
-
*/
|
|
29186
|
-
this.RulesetVersion = null;
|
|
29187
|
-
|
|
29188
|
-
}
|
|
29189
|
-
|
|
29190
|
-
/**
|
|
29191
|
-
* @private
|
|
29192
|
-
*/
|
|
29193
|
-
deserialize(params) {
|
|
29194
|
-
if (!params) {
|
|
29195
|
-
return;
|
|
29196
|
-
}
|
|
29197
|
-
this.AutoUpdateToLatestVersion = 'AutoUpdateToLatestVersion' in params ? params.AutoUpdateToLatestVersion : null;
|
|
29198
|
-
this.RulesetVersion = 'RulesetVersion' in params ? params.RulesetVersion : null;
|
|
29199
|
-
|
|
29200
|
-
}
|
|
29201
|
-
}
|
|
29202
|
-
|
|
29203
|
-
/**
|
|
29204
|
-
* Location information of the Client IP carried in origin-pull. It is formatted as a two-letter ISO-3166-1 country/region code.
|
|
29205
|
-
* @class
|
|
29206
|
-
*/
|
|
29207
|
-
class ClientIPCountryParameters extends AbstractModel {
|
|
29208
|
-
constructor(){
|
|
29209
|
-
super();
|
|
29210
|
-
|
|
29211
|
-
/**
|
|
29212
|
-
* Whether to enable configuration. values:.
|
|
29213
|
-
<Li>`On`: enable;</li>
|
|
29214
|
-
.
|
|
29215
|
-
<Li>Off: disable.</li>.
|
|
29216
|
-
* @type {string || null}
|
|
29217
|
-
*/
|
|
29218
|
-
this.Switch = null;
|
|
29219
|
-
|
|
29220
|
-
/**
|
|
29221
|
-
* Name of the request header that contains the client ip region. it is valid when `switch=on`. the default value `eo-client-ipcountry` is used when it is not specified.
|
|
29222
|
-
* @type {string || null}
|
|
29223
|
-
*/
|
|
29224
|
-
this.HeaderName = null;
|
|
29225
|
-
|
|
29226
|
-
}
|
|
29227
|
-
|
|
29228
|
-
/**
|
|
29229
|
-
* @private
|
|
29230
|
-
*/
|
|
29231
|
-
deserialize(params) {
|
|
29232
|
-
if (!params) {
|
|
29233
|
-
return;
|
|
29234
|
-
}
|
|
29235
|
-
this.Switch = 'Switch' in params ? params.Switch : null;
|
|
29236
|
-
this.HeaderName = 'HeaderName' in params ? params.HeaderName : null;
|
|
29237
|
-
|
|
29238
|
-
}
|
|
29239
|
-
}
|
|
29240
|
-
|
|
29241
|
-
/**
|
|
29242
|
-
* IncreasePlanQuota response structure.
|
|
29243
|
-
* @class
|
|
29244
|
-
*/
|
|
29245
|
-
class IncreasePlanQuotaResponse extends AbstractModel {
|
|
29246
|
-
constructor(){
|
|
29247
|
-
super();
|
|
29248
|
-
|
|
29249
|
-
/**
|
|
29250
|
-
* Order number.
|
|
29251
|
-
* @type {string || null}
|
|
29252
|
-
*/
|
|
29253
|
-
this.DealName = null;
|
|
29254
|
-
|
|
29255
|
-
/**
|
|
29256
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29257
|
-
* @type {string || null}
|
|
29258
|
-
*/
|
|
29259
|
-
this.RequestId = null;
|
|
29260
|
-
|
|
29261
|
-
}
|
|
29262
|
-
|
|
29263
|
-
/**
|
|
29264
|
-
* @private
|
|
29265
|
-
*/
|
|
29266
|
-
deserialize(params) {
|
|
29267
|
-
if (!params) {
|
|
29268
|
-
return;
|
|
29269
|
-
}
|
|
29270
|
-
this.DealName = 'DealName' in params ? params.DealName : null;
|
|
29271
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29272
|
-
|
|
29273
|
-
}
|
|
29274
|
-
}
|
|
29275
|
-
|
|
29276
|
-
/**
|
|
29277
|
-
* DescribeIPRegion response structure.
|
|
29278
|
-
* @class
|
|
29279
|
-
*/
|
|
29280
|
-
class DescribeIPRegionResponse extends AbstractModel {
|
|
29281
|
-
constructor(){
|
|
29282
|
-
super();
|
|
29283
|
-
|
|
29284
|
-
/**
|
|
29285
|
-
* List of IP attribution information.
|
|
29286
|
-
* @type {Array.<IPRegionInfo> || null}
|
|
29287
|
-
*/
|
|
29288
|
-
this.IPRegionInfo = null;
|
|
29289
|
-
|
|
29290
|
-
/**
|
|
29291
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29292
|
-
* @type {string || null}
|
|
29293
|
-
*/
|
|
29294
|
-
this.RequestId = null;
|
|
29295
|
-
|
|
29296
|
-
}
|
|
29297
|
-
|
|
29298
|
-
/**
|
|
29299
|
-
* @private
|
|
29300
|
-
*/
|
|
29301
|
-
deserialize(params) {
|
|
29302
|
-
if (!params) {
|
|
29303
|
-
return;
|
|
29304
|
-
}
|
|
29305
|
-
|
|
29306
|
-
if (params.IPRegionInfo) {
|
|
29307
|
-
this.IPRegionInfo = new Array();
|
|
29308
|
-
for (let z in params.IPRegionInfo) {
|
|
29309
|
-
let obj = new IPRegionInfo();
|
|
29310
|
-
obj.deserialize(params.IPRegionInfo[z]);
|
|
29311
|
-
this.IPRegionInfo.push(obj);
|
|
29312
|
-
}
|
|
29313
|
-
}
|
|
29314
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29315
|
-
|
|
29316
|
-
}
|
|
29317
|
-
}
|
|
29318
|
-
|
|
29319
|
-
/**
|
|
29320
|
-
* DescribeAvailablePlans request structure.
|
|
29302
|
+
* ConfirmMultiPathGatewayOriginACL request structure.
|
|
29321
29303
|
* @class
|
|
29322
29304
|
*/
|
|
29323
|
-
class
|
|
29305
|
+
class ConfirmMultiPathGatewayOriginACLRequest extends AbstractModel {
|
|
29324
29306
|
constructor(){
|
|
29325
29307
|
super();
|
|
29326
29308
|
|
|
29327
|
-
}
|
|
29328
|
-
|
|
29329
|
-
/**
|
|
29330
|
-
* @private
|
|
29331
|
-
*/
|
|
29332
|
-
deserialize(params) {
|
|
29333
|
-
if (!params) {
|
|
29334
|
-
return;
|
|
29335
|
-
}
|
|
29336
|
-
|
|
29337
|
-
}
|
|
29338
|
-
}
|
|
29339
|
-
|
|
29340
|
-
/**
|
|
29341
|
-
*
|
|
29342
|
-
* @class
|
|
29343
|
-
*/
|
|
29344
|
-
class DnsVerification extends AbstractModel {
|
|
29345
|
-
constructor(){
|
|
29346
|
-
super();
|
|
29347
|
-
|
|
29348
|
-
/**
|
|
29349
|
-
* The host record.
|
|
29350
|
-
* @type {string || null}
|
|
29351
|
-
*/
|
|
29352
|
-
this.Subdomain = null;
|
|
29353
|
-
|
|
29354
|
-
/**
|
|
29355
|
-
* The record type.
|
|
29356
|
-
* @type {string || null}
|
|
29357
|
-
*/
|
|
29358
|
-
this.RecordType = null;
|
|
29359
|
-
|
|
29360
|
-
/**
|
|
29361
|
-
* The record value.
|
|
29362
|
-
* @type {string || null}
|
|
29363
|
-
*/
|
|
29364
|
-
this.RecordValue = null;
|
|
29365
|
-
|
|
29366
|
-
}
|
|
29367
|
-
|
|
29368
|
-
/**
|
|
29369
|
-
* @private
|
|
29370
|
-
*/
|
|
29371
|
-
deserialize(params) {
|
|
29372
|
-
if (!params) {
|
|
29373
|
-
return;
|
|
29374
|
-
}
|
|
29375
|
-
this.Subdomain = 'Subdomain' in params ? params.Subdomain : null;
|
|
29376
|
-
this.RecordType = 'RecordType' in params ? params.RecordType : null;
|
|
29377
|
-
this.RecordValue = 'RecordValue' in params ? params.RecordValue : null;
|
|
29378
|
-
|
|
29379
|
-
}
|
|
29380
|
-
}
|
|
29381
|
-
|
|
29382
|
-
/**
|
|
29383
|
-
* Validate Cookie.
|
|
29384
|
-
* @class
|
|
29385
|
-
*/
|
|
29386
|
-
class AlgDetectSession extends AbstractModel {
|
|
29387
|
-
constructor(){
|
|
29388
|
-
super();
|
|
29389
|
-
|
|
29390
|
-
/**
|
|
29391
|
-
* Method to validate Cookie.
|
|
29392
|
-
* @type {string || null}
|
|
29393
|
-
*/
|
|
29394
|
-
this.Name = null;
|
|
29395
|
-
|
|
29396
29309
|
/**
|
|
29397
|
-
*
|
|
29398
|
-
<li>`detect`: Validate only</li>
|
|
29399
|
-
<li>`update_detect` (default): Update Cookie and validate</li>
|
|
29310
|
+
* Zone ID.
|
|
29400
29311
|
* @type {string || null}
|
|
29401
29312
|
*/
|
|
29402
|
-
this.
|
|
29313
|
+
this.ZoneId = null;
|
|
29403
29314
|
|
|
29404
29315
|
/**
|
|
29405
|
-
*
|
|
29406
|
-
<li>`off`: Disable</li>
|
|
29407
|
-
<li>`on`: Enable</li>
|
|
29316
|
+
* Gateway ID.
|
|
29408
29317
|
* @type {string || null}
|
|
29409
29318
|
*/
|
|
29410
|
-
this.
|
|
29411
|
-
|
|
29412
|
-
/**
|
|
29413
|
-
* The period threshold for validating the result "No Cookie/Cookie expired" in seconds. Value range: 5-3600. Default value: 10.
|
|
29414
|
-
* @type {number || null}
|
|
29415
|
-
*/
|
|
29416
|
-
this.InvalidStatTime = null;
|
|
29319
|
+
this.GatewayId = null;
|
|
29417
29320
|
|
|
29418
29321
|
/**
|
|
29419
|
-
*
|
|
29322
|
+
* Describes the version number of the origin server IP.
|
|
29420
29323
|
* @type {number || null}
|
|
29421
29324
|
*/
|
|
29422
|
-
this.
|
|
29423
|
-
|
|
29424
|
-
/**
|
|
29425
|
-
* Cookie validation results.
|
|
29426
|
-
* @type {Array.<AlgDetectResult> || null}
|
|
29427
|
-
*/
|
|
29428
|
-
this.AlgDetectResults = null;
|
|
29429
|
-
|
|
29430
|
-
/**
|
|
29431
|
-
* Cookie-based session check results.
|
|
29432
|
-
* @type {Array.<AlgDetectResult> || null}
|
|
29433
|
-
*/
|
|
29434
|
-
this.SessionBehaviors = null;
|
|
29325
|
+
this.OriginACLVersion = null;
|
|
29435
29326
|
|
|
29436
29327
|
}
|
|
29437
29328
|
|
|
@@ -29442,38 +29333,406 @@ class AlgDetectSession extends AbstractModel {
|
|
|
29442
29333
|
if (!params) {
|
|
29443
29334
|
return;
|
|
29444
29335
|
}
|
|
29445
|
-
this.
|
|
29446
|
-
this.
|
|
29447
|
-
this.
|
|
29448
|
-
this.InvalidStatTime = 'InvalidStatTime' in params ? params.InvalidStatTime : null;
|
|
29449
|
-
this.InvalidThreshold = 'InvalidThreshold' in params ? params.InvalidThreshold : null;
|
|
29450
|
-
|
|
29451
|
-
if (params.AlgDetectResults) {
|
|
29452
|
-
this.AlgDetectResults = new Array();
|
|
29453
|
-
for (let z in params.AlgDetectResults) {
|
|
29454
|
-
let obj = new AlgDetectResult();
|
|
29455
|
-
obj.deserialize(params.AlgDetectResults[z]);
|
|
29456
|
-
this.AlgDetectResults.push(obj);
|
|
29457
|
-
}
|
|
29458
|
-
}
|
|
29459
|
-
|
|
29460
|
-
if (params.SessionBehaviors) {
|
|
29461
|
-
this.SessionBehaviors = new Array();
|
|
29462
|
-
for (let z in params.SessionBehaviors) {
|
|
29463
|
-
let obj = new AlgDetectResult();
|
|
29464
|
-
obj.deserialize(params.SessionBehaviors[z]);
|
|
29465
|
-
this.SessionBehaviors.push(obj);
|
|
29466
|
-
}
|
|
29467
|
-
}
|
|
29336
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
29337
|
+
this.GatewayId = 'GatewayId' in params ? params.GatewayId : null;
|
|
29338
|
+
this.OriginACLVersion = 'OriginACLVersion' in params ? params.OriginACLVersion : null;
|
|
29468
29339
|
|
|
29469
29340
|
}
|
|
29470
29341
|
}
|
|
29471
29342
|
|
|
29472
29343
|
/**
|
|
29473
|
-
*
|
|
29344
|
+
* DeleteL4Proxy response structure.
|
|
29474
29345
|
* @class
|
|
29475
29346
|
*/
|
|
29476
|
-
class
|
|
29347
|
+
class DeleteL4ProxyResponse extends AbstractModel {
|
|
29348
|
+
constructor(){
|
|
29349
|
+
super();
|
|
29350
|
+
|
|
29351
|
+
/**
|
|
29352
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29353
|
+
* @type {string || null}
|
|
29354
|
+
*/
|
|
29355
|
+
this.RequestId = null;
|
|
29356
|
+
|
|
29357
|
+
}
|
|
29358
|
+
|
|
29359
|
+
/**
|
|
29360
|
+
* @private
|
|
29361
|
+
*/
|
|
29362
|
+
deserialize(params) {
|
|
29363
|
+
if (!params) {
|
|
29364
|
+
return;
|
|
29365
|
+
}
|
|
29366
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29367
|
+
|
|
29368
|
+
}
|
|
29369
|
+
}
|
|
29370
|
+
|
|
29371
|
+
/**
|
|
29372
|
+
* ModifyApplicationProxyRuleStatus response structure.
|
|
29373
|
+
* @class
|
|
29374
|
+
*/
|
|
29375
|
+
class ModifyApplicationProxyRuleStatusResponse extends AbstractModel {
|
|
29376
|
+
constructor(){
|
|
29377
|
+
super();
|
|
29378
|
+
|
|
29379
|
+
/**
|
|
29380
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29381
|
+
* @type {string || null}
|
|
29382
|
+
*/
|
|
29383
|
+
this.RequestId = null;
|
|
29384
|
+
|
|
29385
|
+
}
|
|
29386
|
+
|
|
29387
|
+
/**
|
|
29388
|
+
* @private
|
|
29389
|
+
*/
|
|
29390
|
+
deserialize(params) {
|
|
29391
|
+
if (!params) {
|
|
29392
|
+
return;
|
|
29393
|
+
}
|
|
29394
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29395
|
+
|
|
29396
|
+
}
|
|
29397
|
+
}
|
|
29398
|
+
|
|
29399
|
+
/**
|
|
29400
|
+
* Managed rule automatic update option.
|
|
29401
|
+
* @class
|
|
29402
|
+
*/
|
|
29403
|
+
class ManagedRuleAutoUpdate extends AbstractModel {
|
|
29404
|
+
constructor(){
|
|
29405
|
+
super();
|
|
29406
|
+
|
|
29407
|
+
/**
|
|
29408
|
+
* Enable automatic update to the latest version or not. Values: <li>`on`: enabled</li> <li>`off`: disabled</li>.
|
|
29409
|
+
* @type {string || null}
|
|
29410
|
+
*/
|
|
29411
|
+
this.AutoUpdateToLatestVersion = null;
|
|
29412
|
+
|
|
29413
|
+
/**
|
|
29414
|
+
* Current version, compliant with ISO 8601 standard format, such as 2023-12-21T12:00:32Z, empty by default, output parameter only.
|
|
29415
|
+
* @type {string || null}
|
|
29416
|
+
*/
|
|
29417
|
+
this.RulesetVersion = null;
|
|
29418
|
+
|
|
29419
|
+
}
|
|
29420
|
+
|
|
29421
|
+
/**
|
|
29422
|
+
* @private
|
|
29423
|
+
*/
|
|
29424
|
+
deserialize(params) {
|
|
29425
|
+
if (!params) {
|
|
29426
|
+
return;
|
|
29427
|
+
}
|
|
29428
|
+
this.AutoUpdateToLatestVersion = 'AutoUpdateToLatestVersion' in params ? params.AutoUpdateToLatestVersion : null;
|
|
29429
|
+
this.RulesetVersion = 'RulesetVersion' in params ? params.RulesetVersion : null;
|
|
29430
|
+
|
|
29431
|
+
}
|
|
29432
|
+
}
|
|
29433
|
+
|
|
29434
|
+
/**
|
|
29435
|
+
* Location information of the Client IP carried in origin-pull. It is formatted as a two-letter ISO-3166-1 country/region code.
|
|
29436
|
+
* @class
|
|
29437
|
+
*/
|
|
29438
|
+
class ClientIPCountryParameters extends AbstractModel {
|
|
29439
|
+
constructor(){
|
|
29440
|
+
super();
|
|
29441
|
+
|
|
29442
|
+
/**
|
|
29443
|
+
* Whether to enable configuration. values:.
|
|
29444
|
+
<Li>`On`: enable;</li>
|
|
29445
|
+
.
|
|
29446
|
+
<Li>Off: disable.</li>.
|
|
29447
|
+
* @type {string || null}
|
|
29448
|
+
*/
|
|
29449
|
+
this.Switch = null;
|
|
29450
|
+
|
|
29451
|
+
/**
|
|
29452
|
+
* Name of the request header that contains the client ip region. it is valid when `switch=on`. the default value `eo-client-ipcountry` is used when it is not specified.
|
|
29453
|
+
* @type {string || null}
|
|
29454
|
+
*/
|
|
29455
|
+
this.HeaderName = null;
|
|
29456
|
+
|
|
29457
|
+
}
|
|
29458
|
+
|
|
29459
|
+
/**
|
|
29460
|
+
* @private
|
|
29461
|
+
*/
|
|
29462
|
+
deserialize(params) {
|
|
29463
|
+
if (!params) {
|
|
29464
|
+
return;
|
|
29465
|
+
}
|
|
29466
|
+
this.Switch = 'Switch' in params ? params.Switch : null;
|
|
29467
|
+
this.HeaderName = 'HeaderName' in params ? params.HeaderName : null;
|
|
29468
|
+
|
|
29469
|
+
}
|
|
29470
|
+
}
|
|
29471
|
+
|
|
29472
|
+
/**
|
|
29473
|
+
* IncreasePlanQuota response structure.
|
|
29474
|
+
* @class
|
|
29475
|
+
*/
|
|
29476
|
+
class IncreasePlanQuotaResponse extends AbstractModel {
|
|
29477
|
+
constructor(){
|
|
29478
|
+
super();
|
|
29479
|
+
|
|
29480
|
+
/**
|
|
29481
|
+
* Order number.
|
|
29482
|
+
* @type {string || null}
|
|
29483
|
+
*/
|
|
29484
|
+
this.DealName = null;
|
|
29485
|
+
|
|
29486
|
+
/**
|
|
29487
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29488
|
+
* @type {string || null}
|
|
29489
|
+
*/
|
|
29490
|
+
this.RequestId = null;
|
|
29491
|
+
|
|
29492
|
+
}
|
|
29493
|
+
|
|
29494
|
+
/**
|
|
29495
|
+
* @private
|
|
29496
|
+
*/
|
|
29497
|
+
deserialize(params) {
|
|
29498
|
+
if (!params) {
|
|
29499
|
+
return;
|
|
29500
|
+
}
|
|
29501
|
+
this.DealName = 'DealName' in params ? params.DealName : null;
|
|
29502
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29503
|
+
|
|
29504
|
+
}
|
|
29505
|
+
}
|
|
29506
|
+
|
|
29507
|
+
/**
|
|
29508
|
+
* DescribeIPRegion response structure.
|
|
29509
|
+
* @class
|
|
29510
|
+
*/
|
|
29511
|
+
class DescribeIPRegionResponse extends AbstractModel {
|
|
29512
|
+
constructor(){
|
|
29513
|
+
super();
|
|
29514
|
+
|
|
29515
|
+
/**
|
|
29516
|
+
* List of IP attribution information.
|
|
29517
|
+
* @type {Array.<IPRegionInfo> || null}
|
|
29518
|
+
*/
|
|
29519
|
+
this.IPRegionInfo = null;
|
|
29520
|
+
|
|
29521
|
+
/**
|
|
29522
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29523
|
+
* @type {string || null}
|
|
29524
|
+
*/
|
|
29525
|
+
this.RequestId = null;
|
|
29526
|
+
|
|
29527
|
+
}
|
|
29528
|
+
|
|
29529
|
+
/**
|
|
29530
|
+
* @private
|
|
29531
|
+
*/
|
|
29532
|
+
deserialize(params) {
|
|
29533
|
+
if (!params) {
|
|
29534
|
+
return;
|
|
29535
|
+
}
|
|
29536
|
+
|
|
29537
|
+
if (params.IPRegionInfo) {
|
|
29538
|
+
this.IPRegionInfo = new Array();
|
|
29539
|
+
for (let z in params.IPRegionInfo) {
|
|
29540
|
+
let obj = new IPRegionInfo();
|
|
29541
|
+
obj.deserialize(params.IPRegionInfo[z]);
|
|
29542
|
+
this.IPRegionInfo.push(obj);
|
|
29543
|
+
}
|
|
29544
|
+
}
|
|
29545
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29546
|
+
|
|
29547
|
+
}
|
|
29548
|
+
}
|
|
29549
|
+
|
|
29550
|
+
/**
|
|
29551
|
+
* DescribeAvailablePlans request structure.
|
|
29552
|
+
* @class
|
|
29553
|
+
*/
|
|
29554
|
+
class DescribeAvailablePlansRequest extends AbstractModel {
|
|
29555
|
+
constructor(){
|
|
29556
|
+
super();
|
|
29557
|
+
|
|
29558
|
+
}
|
|
29559
|
+
|
|
29560
|
+
/**
|
|
29561
|
+
* @private
|
|
29562
|
+
*/
|
|
29563
|
+
deserialize(params) {
|
|
29564
|
+
if (!params) {
|
|
29565
|
+
return;
|
|
29566
|
+
}
|
|
29567
|
+
|
|
29568
|
+
}
|
|
29569
|
+
}
|
|
29570
|
+
|
|
29571
|
+
/**
|
|
29572
|
+
* ModifyMultiPathGatewayStatus response structure.
|
|
29573
|
+
* @class
|
|
29574
|
+
*/
|
|
29575
|
+
class ModifyMultiPathGatewayStatusResponse extends AbstractModel {
|
|
29576
|
+
constructor(){
|
|
29577
|
+
super();
|
|
29578
|
+
|
|
29579
|
+
/**
|
|
29580
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
29581
|
+
* @type {string || null}
|
|
29582
|
+
*/
|
|
29583
|
+
this.RequestId = null;
|
|
29584
|
+
|
|
29585
|
+
}
|
|
29586
|
+
|
|
29587
|
+
/**
|
|
29588
|
+
* @private
|
|
29589
|
+
*/
|
|
29590
|
+
deserialize(params) {
|
|
29591
|
+
if (!params) {
|
|
29592
|
+
return;
|
|
29593
|
+
}
|
|
29594
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29595
|
+
|
|
29596
|
+
}
|
|
29597
|
+
}
|
|
29598
|
+
|
|
29599
|
+
/**
|
|
29600
|
+
*
|
|
29601
|
+
* @class
|
|
29602
|
+
*/
|
|
29603
|
+
class DnsVerification extends AbstractModel {
|
|
29604
|
+
constructor(){
|
|
29605
|
+
super();
|
|
29606
|
+
|
|
29607
|
+
/**
|
|
29608
|
+
* The host record.
|
|
29609
|
+
* @type {string || null}
|
|
29610
|
+
*/
|
|
29611
|
+
this.Subdomain = null;
|
|
29612
|
+
|
|
29613
|
+
/**
|
|
29614
|
+
* The record type.
|
|
29615
|
+
* @type {string || null}
|
|
29616
|
+
*/
|
|
29617
|
+
this.RecordType = null;
|
|
29618
|
+
|
|
29619
|
+
/**
|
|
29620
|
+
* The record value.
|
|
29621
|
+
* @type {string || null}
|
|
29622
|
+
*/
|
|
29623
|
+
this.RecordValue = null;
|
|
29624
|
+
|
|
29625
|
+
}
|
|
29626
|
+
|
|
29627
|
+
/**
|
|
29628
|
+
* @private
|
|
29629
|
+
*/
|
|
29630
|
+
deserialize(params) {
|
|
29631
|
+
if (!params) {
|
|
29632
|
+
return;
|
|
29633
|
+
}
|
|
29634
|
+
this.Subdomain = 'Subdomain' in params ? params.Subdomain : null;
|
|
29635
|
+
this.RecordType = 'RecordType' in params ? params.RecordType : null;
|
|
29636
|
+
this.RecordValue = 'RecordValue' in params ? params.RecordValue : null;
|
|
29637
|
+
|
|
29638
|
+
}
|
|
29639
|
+
}
|
|
29640
|
+
|
|
29641
|
+
/**
|
|
29642
|
+
* Validate Cookie.
|
|
29643
|
+
* @class
|
|
29644
|
+
*/
|
|
29645
|
+
class AlgDetectSession extends AbstractModel {
|
|
29646
|
+
constructor(){
|
|
29647
|
+
super();
|
|
29648
|
+
|
|
29649
|
+
/**
|
|
29650
|
+
* Method to validate Cookie.
|
|
29651
|
+
* @type {string || null}
|
|
29652
|
+
*/
|
|
29653
|
+
this.Name = null;
|
|
29654
|
+
|
|
29655
|
+
/**
|
|
29656
|
+
* The validation mode. Values:
|
|
29657
|
+
<li>`detect`: Validate only</li>
|
|
29658
|
+
<li>`update_detect` (default): Update Cookie and validate</li>
|
|
29659
|
+
* @type {string || null}
|
|
29660
|
+
*/
|
|
29661
|
+
this.DetectMode = null;
|
|
29662
|
+
|
|
29663
|
+
/**
|
|
29664
|
+
* Whether to enable Cookie-based session check. The default value is `off`. Values:
|
|
29665
|
+
<li>`off`: Disable</li>
|
|
29666
|
+
<li>`on`: Enable</li>
|
|
29667
|
+
* @type {string || null}
|
|
29668
|
+
*/
|
|
29669
|
+
this.SessionAnalyzeSwitch = null;
|
|
29670
|
+
|
|
29671
|
+
/**
|
|
29672
|
+
* The period threshold for validating the result "No Cookie/Cookie expired" in seconds. Value range: 5-3600. Default value: 10.
|
|
29673
|
+
* @type {number || null}
|
|
29674
|
+
*/
|
|
29675
|
+
this.InvalidStatTime = null;
|
|
29676
|
+
|
|
29677
|
+
/**
|
|
29678
|
+
* The number of times for the result "No Cookie/Cookie expired" occurred in the specified period. Value range: 1-100000000. Default value: 300.
|
|
29679
|
+
* @type {number || null}
|
|
29680
|
+
*/
|
|
29681
|
+
this.InvalidThreshold = null;
|
|
29682
|
+
|
|
29683
|
+
/**
|
|
29684
|
+
* Cookie validation results.
|
|
29685
|
+
* @type {Array.<AlgDetectResult> || null}
|
|
29686
|
+
*/
|
|
29687
|
+
this.AlgDetectResults = null;
|
|
29688
|
+
|
|
29689
|
+
/**
|
|
29690
|
+
* Cookie-based session check results.
|
|
29691
|
+
* @type {Array.<AlgDetectResult> || null}
|
|
29692
|
+
*/
|
|
29693
|
+
this.SessionBehaviors = null;
|
|
29694
|
+
|
|
29695
|
+
}
|
|
29696
|
+
|
|
29697
|
+
/**
|
|
29698
|
+
* @private
|
|
29699
|
+
*/
|
|
29700
|
+
deserialize(params) {
|
|
29701
|
+
if (!params) {
|
|
29702
|
+
return;
|
|
29703
|
+
}
|
|
29704
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
29705
|
+
this.DetectMode = 'DetectMode' in params ? params.DetectMode : null;
|
|
29706
|
+
this.SessionAnalyzeSwitch = 'SessionAnalyzeSwitch' in params ? params.SessionAnalyzeSwitch : null;
|
|
29707
|
+
this.InvalidStatTime = 'InvalidStatTime' in params ? params.InvalidStatTime : null;
|
|
29708
|
+
this.InvalidThreshold = 'InvalidThreshold' in params ? params.InvalidThreshold : null;
|
|
29709
|
+
|
|
29710
|
+
if (params.AlgDetectResults) {
|
|
29711
|
+
this.AlgDetectResults = new Array();
|
|
29712
|
+
for (let z in params.AlgDetectResults) {
|
|
29713
|
+
let obj = new AlgDetectResult();
|
|
29714
|
+
obj.deserialize(params.AlgDetectResults[z]);
|
|
29715
|
+
this.AlgDetectResults.push(obj);
|
|
29716
|
+
}
|
|
29717
|
+
}
|
|
29718
|
+
|
|
29719
|
+
if (params.SessionBehaviors) {
|
|
29720
|
+
this.SessionBehaviors = new Array();
|
|
29721
|
+
for (let z in params.SessionBehaviors) {
|
|
29722
|
+
let obj = new AlgDetectResult();
|
|
29723
|
+
obj.deserialize(params.SessionBehaviors[z]);
|
|
29724
|
+
this.SessionBehaviors.push(obj);
|
|
29725
|
+
}
|
|
29726
|
+
}
|
|
29727
|
+
|
|
29728
|
+
}
|
|
29729
|
+
}
|
|
29730
|
+
|
|
29731
|
+
/**
|
|
29732
|
+
* ModifyZoneStatus response structure.
|
|
29733
|
+
* @class
|
|
29734
|
+
*/
|
|
29735
|
+
class ModifyZoneStatusResponse extends AbstractModel {
|
|
29477
29736
|
constructor(){
|
|
29478
29737
|
super();
|
|
29479
29738
|
|
|
@@ -31080,305 +31339,24 @@ class CreateCustomizeErrorPageResponse extends AbstractModel {
|
|
|
31080
31339
|
}
|
|
31081
31340
|
|
|
31082
31341
|
/**
|
|
31083
|
-
*
|
|
31342
|
+
* DescribeMultiPathGatewayOriginACL request structure.
|
|
31084
31343
|
* @class
|
|
31085
31344
|
*/
|
|
31086
|
-
class
|
|
31345
|
+
class DescribeMultiPathGatewayOriginACLRequest extends AbstractModel {
|
|
31087
31346
|
constructor(){
|
|
31088
31347
|
super();
|
|
31089
31348
|
|
|
31090
31349
|
/**
|
|
31091
|
-
*
|
|
31092
|
-
<li>Cache: specifies the node Cache TTL.</li>.
|
|
31093
|
-
<Li>CacheKey: specifies the custom cache key.</li>.
|
|
31094
|
-
<Li>CachePrefresh: cache pre-refresh;</li>.
|
|
31095
|
-
<Li>AccessURLRedirect: url redirection;</li>.
|
|
31096
|
-
<Li>UpstreamURLRewrite: specifies the origin-pull url rewrite.</li>.
|
|
31097
|
-
<li>QUIC:QUIC;</li>
|
|
31098
|
-
<li>WebSocket:WebSocket;</li>
|
|
31099
|
-
<li>Authentication: Token Authentication;</li>.
|
|
31100
|
-
<li>MaxAge: browser caching TTL;</li>.
|
|
31101
|
-
<li>StatusCodeCache: specifies the status code cache TTL.</li>.
|
|
31102
|
-
<Li>OfflineCache: offline caching;</li>.
|
|
31103
|
-
<Li>SmartRouting: smart acceleration;</li>.
|
|
31104
|
-
<Li>RangeOriginPull: range-based origin pull;</li>.
|
|
31105
|
-
<Li>UpstreamHTTP2: http/2 origin pull;</li>.
|
|
31106
|
-
<Li>HostHeader: host header rewrite;</li>.
|
|
31107
|
-
<Li>`ForceRedirectHTTPS`: force https redirect configuration for access protocol.</li>.
|
|
31108
|
-
<li>OriginPullProtocol: HTTPS origin pull;</li>.
|
|
31109
|
-
<Li>Compression: intelligent compression configuration;</li>.
|
|
31110
|
-
<li>HSTS:HSTS;</li>
|
|
31111
|
-
<Li>ClientIPHeader: configuration for storing client request ip in header information;</li>.
|
|
31112
|
-
<Li>OCSPStapling: ocsp stapling;</li>.
|
|
31113
|
-
<Li>HTTP2: http/2 integration;</li>.
|
|
31114
|
-
<li>PostMaxSize: maximum size of the file uploaded for streaming via a POST request;</li>.
|
|
31115
|
-
<Li>ClientIPCountry: region of the client ip during origin-pull;</li>.
|
|
31116
|
-
<Li>UpstreamFollowRedirect: specifies the parameter configuration for redirection during origin pull.</li>.
|
|
31117
|
-
<Li>UpstreamRequest: origin pull request parameter;</li>.
|
|
31118
|
-
<li>TLSConfig: specifies SSL/TLS security.</li>.
|
|
31119
|
-
<Li>ModifyOrigin: modify origin server;</li>.
|
|
31120
|
-
<Li>HTTPUpstreamTimeout: specifies the layer 7 origin pull timeout configuration.</li>.
|
|
31121
|
-
<li>HttpResponse: HTTP response;</li>.
|
|
31122
|
-
<Li>ErrorPage: specifies the custom error page.</li>.
|
|
31123
|
-
<li>ModifyResponseHeader: modifies the HTTP node response header.</li>.
|
|
31124
|
-
<li>ModifyRequestHeader: modifies the HTTP node request header.</li>.
|
|
31125
|
-
<Li>ResponseSpeedLimit: download speed limit for a single connection;</li>.
|
|
31126
|
-
<Li>SetContentIdentifier: sets the content identifier;</li>.
|
|
31127
|
-
<Li>Vary: vary feature configuration.</li>.
|
|
31350
|
+
* Zone ID.
|
|
31128
31351
|
* @type {string || null}
|
|
31129
31352
|
*/
|
|
31130
|
-
this.
|
|
31131
|
-
|
|
31132
|
-
/**
|
|
31133
|
-
* Node cache ttl configuration parameter. when name is cache, this parameter is required.
|
|
31134
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31135
|
-
* @type {CacheParameters || null}
|
|
31136
|
-
*/
|
|
31137
|
-
this.CacheParameters = null;
|
|
31138
|
-
|
|
31139
|
-
/**
|
|
31140
|
-
* Custom cache key configuration parameter. when name is cachekey, this parameter is required.
|
|
31141
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31142
|
-
* @type {CacheKeyParameters || null}
|
|
31143
|
-
*/
|
|
31144
|
-
this.CacheKeyParameters = null;
|
|
31145
|
-
|
|
31146
|
-
/**
|
|
31147
|
-
* The cache prefresh configuration parameter. this parameter is required when `name` is `cacheprefresh`.
|
|
31148
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31149
|
-
* @type {CachePrefreshParameters || null}
|
|
31150
|
-
*/
|
|
31151
|
-
this.CachePrefreshParameters = null;
|
|
31152
|
-
|
|
31153
|
-
/**
|
|
31154
|
-
* The access url redirection configuration parameter. this parameter is required when `name` is `accessurlredirect`.
|
|
31155
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31156
|
-
* @type {AccessURLRedirectParameters || null}
|
|
31157
|
-
*/
|
|
31158
|
-
this.AccessURLRedirectParameters = null;
|
|
31159
|
-
|
|
31160
|
-
/**
|
|
31161
|
-
* The origin-pull url rewrite configuration parameter. this parameter is required when `name` is `upstreamurlrewrite`.
|
|
31162
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31163
|
-
* @type {UpstreamURLRewriteParameters || null}
|
|
31164
|
-
*/
|
|
31165
|
-
this.UpstreamURLRewriteParameters = null;
|
|
31166
|
-
|
|
31167
|
-
/**
|
|
31168
|
-
* The quic configuration parameter. this parameter is required when `name` is `quic`.
|
|
31169
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31170
|
-
* @type {QUICParameters || null}
|
|
31171
|
-
*/
|
|
31172
|
-
this.QUICParameters = null;
|
|
31173
|
-
|
|
31174
|
-
/**
|
|
31175
|
-
* The websocket configuration parameter. this parameter is required when `name` is `websocket`.
|
|
31176
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31177
|
-
* @type {WebSocketParameters || null}
|
|
31178
|
-
*/
|
|
31179
|
-
this.WebSocketParameters = null;
|
|
31180
|
-
|
|
31181
|
-
/**
|
|
31182
|
-
* Token authentication configuration parameter. this parameter is required when `name` is `authentication`.
|
|
31183
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31184
|
-
* @type {AuthenticationParameters || null}
|
|
31185
|
-
*/
|
|
31186
|
-
this.AuthenticationParameters = null;
|
|
31187
|
-
|
|
31188
|
-
/**
|
|
31189
|
-
* Browser cache ttl configuration parameter. this parameter is required when `name` is `maxage`.
|
|
31190
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31191
|
-
* @type {MaxAgeParameters || null}
|
|
31192
|
-
*/
|
|
31193
|
-
this.MaxAgeParameters = null;
|
|
31194
|
-
|
|
31195
|
-
/**
|
|
31196
|
-
* Status code cache ttl configuration parameter. this parameter is required when `name` is `statuscodecache`.
|
|
31197
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31198
|
-
* @type {StatusCodeCacheParameters || null}
|
|
31199
|
-
*/
|
|
31200
|
-
this.StatusCodeCacheParameters = null;
|
|
31201
|
-
|
|
31202
|
-
/**
|
|
31203
|
-
* Offline cache configuration parameter. this parameter is required when `name` is `offlinecache`.
|
|
31204
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31205
|
-
* @type {OfflineCacheParameters || null}
|
|
31206
|
-
*/
|
|
31207
|
-
this.OfflineCacheParameters = null;
|
|
31208
|
-
|
|
31209
|
-
/**
|
|
31210
|
-
* Smart acceleration configuration parameter. this parameter is required when `name` is `smartrouting`.
|
|
31211
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31212
|
-
* @type {SmartRoutingParameters || null}
|
|
31213
|
-
*/
|
|
31214
|
-
this.SmartRoutingParameters = null;
|
|
31215
|
-
|
|
31216
|
-
/**
|
|
31217
|
-
* Shard source retrieval configuration parameter. this parameter is required when name is set to rangeoriginpull.
|
|
31218
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31219
|
-
* @type {RangeOriginPullParameters || null}
|
|
31220
|
-
*/
|
|
31221
|
-
this.RangeOriginPullParameters = null;
|
|
31222
|
-
|
|
31223
|
-
/**
|
|
31224
|
-
* HTTP2 origin-pull configuration parameter. this parameter is required when name is set to upstreamhttp2.
|
|
31225
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31226
|
-
* @type {UpstreamHTTP2Parameters || null}
|
|
31227
|
-
*/
|
|
31228
|
-
this.UpstreamHTTP2Parameters = null;
|
|
31229
|
-
|
|
31230
|
-
/**
|
|
31231
|
-
* Host header rewrite configuration parameter. this parameter is required when name is set to hostheader.
|
|
31232
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31233
|
-
* @type {HostHeaderParameters || null}
|
|
31234
|
-
*/
|
|
31235
|
-
this.HostHeaderParameters = null;
|
|
31236
|
-
|
|
31237
|
-
/**
|
|
31238
|
-
* Force https redirect configuration parameter. this parameter is required when the name is set to forceredirecthttps.
|
|
31239
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31240
|
-
* @type {ForceRedirectHTTPSParameters || null}
|
|
31241
|
-
*/
|
|
31242
|
-
this.ForceRedirectHTTPSParameters = null;
|
|
31243
|
-
|
|
31244
|
-
/**
|
|
31245
|
-
*
|
|
31246
|
-
* @type {OriginPullProtocolParameters || null}
|
|
31247
|
-
*/
|
|
31248
|
-
this.OriginPullProtocolParameters = null;
|
|
31249
|
-
|
|
31250
|
-
/**
|
|
31251
|
-
* Intelligent compression configuration. this parameter is required when name is set to compression.
|
|
31252
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31253
|
-
* @type {CompressionParameters || null}
|
|
31254
|
-
*/
|
|
31255
|
-
this.CompressionParameters = null;
|
|
31256
|
-
|
|
31257
|
-
/**
|
|
31258
|
-
* HSTS configuration parameter. this parameter is required when name is hsts.
|
|
31259
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31260
|
-
* @type {HSTSParameters || null}
|
|
31261
|
-
*/
|
|
31262
|
-
this.HSTSParameters = null;
|
|
31263
|
-
|
|
31264
|
-
/**
|
|
31265
|
-
* Client ip header configuration for storing client request ip information. this parameter is required when name is clientipheader.
|
|
31266
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31267
|
-
* @type {ClientIPHeaderParameters || null}
|
|
31268
|
-
*/
|
|
31269
|
-
this.ClientIPHeaderParameters = null;
|
|
31270
|
-
|
|
31271
|
-
/**
|
|
31272
|
-
* OCSP stapling configuration parameter. this parameter is required when the name is set to ocspstapling.
|
|
31273
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31274
|
-
* @type {OCSPStaplingParameters || null}
|
|
31275
|
-
*/
|
|
31276
|
-
this.OCSPStaplingParameters = null;
|
|
31277
|
-
|
|
31278
|
-
/**
|
|
31279
|
-
* HTTP2 access configuration parameter. this parameter is required when name is http2.
|
|
31280
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31281
|
-
* @type {HTTP2Parameters || null}
|
|
31282
|
-
*/
|
|
31283
|
-
this.HTTP2Parameters = null;
|
|
31284
|
-
|
|
31285
|
-
/**
|
|
31286
|
-
* Maximum size configuration for file streaming upload via a post request. this parameter is required when name is postmaxsize.
|
|
31287
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31288
|
-
* @type {PostMaxSizeParameters || null}
|
|
31289
|
-
*/
|
|
31290
|
-
this.PostMaxSizeParameters = null;
|
|
31291
|
-
|
|
31292
|
-
/**
|
|
31293
|
-
* Configuration parameter for carrying the region information of the client ip during origin-pull. this parameter is required when the name is set to clientipcountry.
|
|
31294
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31295
|
-
* @type {ClientIPCountryParameters || null}
|
|
31296
|
-
*/
|
|
31297
|
-
this.ClientIPCountryParameters = null;
|
|
31298
|
-
|
|
31299
|
-
/**
|
|
31300
|
-
* Configuration parameter for following redirects during origin-pull. this parameter is required when the name is set to upstreamfollowredirect.
|
|
31301
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31302
|
-
* @type {UpstreamFollowRedirectParameters || null}
|
|
31303
|
-
*/
|
|
31304
|
-
this.UpstreamFollowRedirectParameters = null;
|
|
31305
|
-
|
|
31306
|
-
/**
|
|
31307
|
-
* Configuration parameter for origin-pull request. this parameter is required when the name is set to upstreamrequest.
|
|
31308
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31309
|
-
* @type {UpstreamRequestParameters || null}
|
|
31310
|
-
*/
|
|
31311
|
-
this.UpstreamRequestParameters = null;
|
|
31312
|
-
|
|
31313
|
-
/**
|
|
31314
|
-
* SSL/TLS security configuration parameter. this parameter is required when the name is set to tlsconfig.
|
|
31315
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31316
|
-
* @type {TLSConfigParameters || null}
|
|
31317
|
-
*/
|
|
31318
|
-
this.TLSConfigParameters = null;
|
|
31319
|
-
|
|
31320
|
-
/**
|
|
31321
|
-
* Configuration parameter for modifying the origin server. this parameter is required when the name is set to modifyorigin.
|
|
31322
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31323
|
-
* @type {ModifyOriginParameters || null}
|
|
31324
|
-
*/
|
|
31325
|
-
this.ModifyOriginParameters = null;
|
|
31326
|
-
|
|
31327
|
-
/**
|
|
31328
|
-
* Configuration of layer 7 origin timeout. this parameter is required when name is httpupstreamtimeout.
|
|
31329
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31330
|
-
* @type {HTTPUpstreamTimeoutParameters || null}
|
|
31331
|
-
*/
|
|
31332
|
-
this.HTTPUpstreamTimeoutParameters = null;
|
|
31333
|
-
|
|
31334
|
-
/**
|
|
31335
|
-
* HTTP response configuration parameters. this parameter is required when name is httpresponse.
|
|
31336
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31337
|
-
* @type {HTTPResponseParameters || null}
|
|
31338
|
-
*/
|
|
31339
|
-
this.HttpResponseParameters = null;
|
|
31340
|
-
|
|
31341
|
-
/**
|
|
31342
|
-
* Custom error page configuration parameters. this parameter is required when name is errorpage.
|
|
31343
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31344
|
-
* @type {ErrorPageParameters || null}
|
|
31345
|
-
*/
|
|
31346
|
-
this.ErrorPageParameters = null;
|
|
31347
|
-
|
|
31348
|
-
/**
|
|
31349
|
-
* Modify http node response header configuration parameters. this parameter is required when name is modifyresponseheader.
|
|
31350
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31351
|
-
* @type {ModifyResponseHeaderParameters || null}
|
|
31352
|
-
*/
|
|
31353
|
-
this.ModifyResponseHeaderParameters = null;
|
|
31354
|
-
|
|
31355
|
-
/**
|
|
31356
|
-
* Modify http node request header configuration parameters. this parameter is required when name is modifyrequestheader.
|
|
31357
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31358
|
-
* @type {ModifyRequestHeaderParameters || null}
|
|
31359
|
-
*/
|
|
31360
|
-
this.ModifyRequestHeaderParameters = null;
|
|
31361
|
-
|
|
31362
|
-
/**
|
|
31363
|
-
* Single connection download speed limit configuration parameter. this parameter is required when name is responsespeedlimit.
|
|
31364
|
-
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
31365
|
-
* @type {ResponseSpeedLimitParameters || null}
|
|
31366
|
-
*/
|
|
31367
|
-
this.ResponseSpeedLimitParameters = null;
|
|
31368
|
-
|
|
31369
|
-
/**
|
|
31370
|
-
* Specifies the content identification configuration parameter. this parameter is required when the Name value is SetContentIdentifier.
|
|
31371
|
-
|
|
31372
|
-
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
31373
|
-
* @type {SetContentIdentifierParameters || null}
|
|
31374
|
-
*/
|
|
31375
|
-
this.SetContentIdentifierParameters = null;
|
|
31353
|
+
this.ZoneId = null;
|
|
31376
31354
|
|
|
31377
31355
|
/**
|
|
31378
|
-
*
|
|
31379
|
-
* @type {
|
|
31356
|
+
* Gateway ID.
|
|
31357
|
+
* @type {string || null}
|
|
31380
31358
|
*/
|
|
31381
|
-
this.
|
|
31359
|
+
this.GatewayId = null;
|
|
31382
31360
|
|
|
31383
31361
|
}
|
|
31384
31362
|
|
|
@@ -31389,223 +31367,8 @@ Note: This field may return null, which indicates a failure to obtain a valid va
|
|
|
31389
31367
|
if (!params) {
|
|
31390
31368
|
return;
|
|
31391
31369
|
}
|
|
31392
|
-
this.
|
|
31393
|
-
|
|
31394
|
-
if (params.CacheParameters) {
|
|
31395
|
-
let obj = new CacheParameters();
|
|
31396
|
-
obj.deserialize(params.CacheParameters)
|
|
31397
|
-
this.CacheParameters = obj;
|
|
31398
|
-
}
|
|
31399
|
-
|
|
31400
|
-
if (params.CacheKeyParameters) {
|
|
31401
|
-
let obj = new CacheKeyParameters();
|
|
31402
|
-
obj.deserialize(params.CacheKeyParameters)
|
|
31403
|
-
this.CacheKeyParameters = obj;
|
|
31404
|
-
}
|
|
31405
|
-
|
|
31406
|
-
if (params.CachePrefreshParameters) {
|
|
31407
|
-
let obj = new CachePrefreshParameters();
|
|
31408
|
-
obj.deserialize(params.CachePrefreshParameters)
|
|
31409
|
-
this.CachePrefreshParameters = obj;
|
|
31410
|
-
}
|
|
31411
|
-
|
|
31412
|
-
if (params.AccessURLRedirectParameters) {
|
|
31413
|
-
let obj = new AccessURLRedirectParameters();
|
|
31414
|
-
obj.deserialize(params.AccessURLRedirectParameters)
|
|
31415
|
-
this.AccessURLRedirectParameters = obj;
|
|
31416
|
-
}
|
|
31417
|
-
|
|
31418
|
-
if (params.UpstreamURLRewriteParameters) {
|
|
31419
|
-
let obj = new UpstreamURLRewriteParameters();
|
|
31420
|
-
obj.deserialize(params.UpstreamURLRewriteParameters)
|
|
31421
|
-
this.UpstreamURLRewriteParameters = obj;
|
|
31422
|
-
}
|
|
31423
|
-
|
|
31424
|
-
if (params.QUICParameters) {
|
|
31425
|
-
let obj = new QUICParameters();
|
|
31426
|
-
obj.deserialize(params.QUICParameters)
|
|
31427
|
-
this.QUICParameters = obj;
|
|
31428
|
-
}
|
|
31429
|
-
|
|
31430
|
-
if (params.WebSocketParameters) {
|
|
31431
|
-
let obj = new WebSocketParameters();
|
|
31432
|
-
obj.deserialize(params.WebSocketParameters)
|
|
31433
|
-
this.WebSocketParameters = obj;
|
|
31434
|
-
}
|
|
31435
|
-
|
|
31436
|
-
if (params.AuthenticationParameters) {
|
|
31437
|
-
let obj = new AuthenticationParameters();
|
|
31438
|
-
obj.deserialize(params.AuthenticationParameters)
|
|
31439
|
-
this.AuthenticationParameters = obj;
|
|
31440
|
-
}
|
|
31441
|
-
|
|
31442
|
-
if (params.MaxAgeParameters) {
|
|
31443
|
-
let obj = new MaxAgeParameters();
|
|
31444
|
-
obj.deserialize(params.MaxAgeParameters)
|
|
31445
|
-
this.MaxAgeParameters = obj;
|
|
31446
|
-
}
|
|
31447
|
-
|
|
31448
|
-
if (params.StatusCodeCacheParameters) {
|
|
31449
|
-
let obj = new StatusCodeCacheParameters();
|
|
31450
|
-
obj.deserialize(params.StatusCodeCacheParameters)
|
|
31451
|
-
this.StatusCodeCacheParameters = obj;
|
|
31452
|
-
}
|
|
31453
|
-
|
|
31454
|
-
if (params.OfflineCacheParameters) {
|
|
31455
|
-
let obj = new OfflineCacheParameters();
|
|
31456
|
-
obj.deserialize(params.OfflineCacheParameters)
|
|
31457
|
-
this.OfflineCacheParameters = obj;
|
|
31458
|
-
}
|
|
31459
|
-
|
|
31460
|
-
if (params.SmartRoutingParameters) {
|
|
31461
|
-
let obj = new SmartRoutingParameters();
|
|
31462
|
-
obj.deserialize(params.SmartRoutingParameters)
|
|
31463
|
-
this.SmartRoutingParameters = obj;
|
|
31464
|
-
}
|
|
31465
|
-
|
|
31466
|
-
if (params.RangeOriginPullParameters) {
|
|
31467
|
-
let obj = new RangeOriginPullParameters();
|
|
31468
|
-
obj.deserialize(params.RangeOriginPullParameters)
|
|
31469
|
-
this.RangeOriginPullParameters = obj;
|
|
31470
|
-
}
|
|
31471
|
-
|
|
31472
|
-
if (params.UpstreamHTTP2Parameters) {
|
|
31473
|
-
let obj = new UpstreamHTTP2Parameters();
|
|
31474
|
-
obj.deserialize(params.UpstreamHTTP2Parameters)
|
|
31475
|
-
this.UpstreamHTTP2Parameters = obj;
|
|
31476
|
-
}
|
|
31477
|
-
|
|
31478
|
-
if (params.HostHeaderParameters) {
|
|
31479
|
-
let obj = new HostHeaderParameters();
|
|
31480
|
-
obj.deserialize(params.HostHeaderParameters)
|
|
31481
|
-
this.HostHeaderParameters = obj;
|
|
31482
|
-
}
|
|
31483
|
-
|
|
31484
|
-
if (params.ForceRedirectHTTPSParameters) {
|
|
31485
|
-
let obj = new ForceRedirectHTTPSParameters();
|
|
31486
|
-
obj.deserialize(params.ForceRedirectHTTPSParameters)
|
|
31487
|
-
this.ForceRedirectHTTPSParameters = obj;
|
|
31488
|
-
}
|
|
31489
|
-
|
|
31490
|
-
if (params.OriginPullProtocolParameters) {
|
|
31491
|
-
let obj = new OriginPullProtocolParameters();
|
|
31492
|
-
obj.deserialize(params.OriginPullProtocolParameters)
|
|
31493
|
-
this.OriginPullProtocolParameters = obj;
|
|
31494
|
-
}
|
|
31495
|
-
|
|
31496
|
-
if (params.CompressionParameters) {
|
|
31497
|
-
let obj = new CompressionParameters();
|
|
31498
|
-
obj.deserialize(params.CompressionParameters)
|
|
31499
|
-
this.CompressionParameters = obj;
|
|
31500
|
-
}
|
|
31501
|
-
|
|
31502
|
-
if (params.HSTSParameters) {
|
|
31503
|
-
let obj = new HSTSParameters();
|
|
31504
|
-
obj.deserialize(params.HSTSParameters)
|
|
31505
|
-
this.HSTSParameters = obj;
|
|
31506
|
-
}
|
|
31507
|
-
|
|
31508
|
-
if (params.ClientIPHeaderParameters) {
|
|
31509
|
-
let obj = new ClientIPHeaderParameters();
|
|
31510
|
-
obj.deserialize(params.ClientIPHeaderParameters)
|
|
31511
|
-
this.ClientIPHeaderParameters = obj;
|
|
31512
|
-
}
|
|
31513
|
-
|
|
31514
|
-
if (params.OCSPStaplingParameters) {
|
|
31515
|
-
let obj = new OCSPStaplingParameters();
|
|
31516
|
-
obj.deserialize(params.OCSPStaplingParameters)
|
|
31517
|
-
this.OCSPStaplingParameters = obj;
|
|
31518
|
-
}
|
|
31519
|
-
|
|
31520
|
-
if (params.HTTP2Parameters) {
|
|
31521
|
-
let obj = new HTTP2Parameters();
|
|
31522
|
-
obj.deserialize(params.HTTP2Parameters)
|
|
31523
|
-
this.HTTP2Parameters = obj;
|
|
31524
|
-
}
|
|
31525
|
-
|
|
31526
|
-
if (params.PostMaxSizeParameters) {
|
|
31527
|
-
let obj = new PostMaxSizeParameters();
|
|
31528
|
-
obj.deserialize(params.PostMaxSizeParameters)
|
|
31529
|
-
this.PostMaxSizeParameters = obj;
|
|
31530
|
-
}
|
|
31531
|
-
|
|
31532
|
-
if (params.ClientIPCountryParameters) {
|
|
31533
|
-
let obj = new ClientIPCountryParameters();
|
|
31534
|
-
obj.deserialize(params.ClientIPCountryParameters)
|
|
31535
|
-
this.ClientIPCountryParameters = obj;
|
|
31536
|
-
}
|
|
31537
|
-
|
|
31538
|
-
if (params.UpstreamFollowRedirectParameters) {
|
|
31539
|
-
let obj = new UpstreamFollowRedirectParameters();
|
|
31540
|
-
obj.deserialize(params.UpstreamFollowRedirectParameters)
|
|
31541
|
-
this.UpstreamFollowRedirectParameters = obj;
|
|
31542
|
-
}
|
|
31543
|
-
|
|
31544
|
-
if (params.UpstreamRequestParameters) {
|
|
31545
|
-
let obj = new UpstreamRequestParameters();
|
|
31546
|
-
obj.deserialize(params.UpstreamRequestParameters)
|
|
31547
|
-
this.UpstreamRequestParameters = obj;
|
|
31548
|
-
}
|
|
31549
|
-
|
|
31550
|
-
if (params.TLSConfigParameters) {
|
|
31551
|
-
let obj = new TLSConfigParameters();
|
|
31552
|
-
obj.deserialize(params.TLSConfigParameters)
|
|
31553
|
-
this.TLSConfigParameters = obj;
|
|
31554
|
-
}
|
|
31555
|
-
|
|
31556
|
-
if (params.ModifyOriginParameters) {
|
|
31557
|
-
let obj = new ModifyOriginParameters();
|
|
31558
|
-
obj.deserialize(params.ModifyOriginParameters)
|
|
31559
|
-
this.ModifyOriginParameters = obj;
|
|
31560
|
-
}
|
|
31561
|
-
|
|
31562
|
-
if (params.HTTPUpstreamTimeoutParameters) {
|
|
31563
|
-
let obj = new HTTPUpstreamTimeoutParameters();
|
|
31564
|
-
obj.deserialize(params.HTTPUpstreamTimeoutParameters)
|
|
31565
|
-
this.HTTPUpstreamTimeoutParameters = obj;
|
|
31566
|
-
}
|
|
31567
|
-
|
|
31568
|
-
if (params.HttpResponseParameters) {
|
|
31569
|
-
let obj = new HTTPResponseParameters();
|
|
31570
|
-
obj.deserialize(params.HttpResponseParameters)
|
|
31571
|
-
this.HttpResponseParameters = obj;
|
|
31572
|
-
}
|
|
31573
|
-
|
|
31574
|
-
if (params.ErrorPageParameters) {
|
|
31575
|
-
let obj = new ErrorPageParameters();
|
|
31576
|
-
obj.deserialize(params.ErrorPageParameters)
|
|
31577
|
-
this.ErrorPageParameters = obj;
|
|
31578
|
-
}
|
|
31579
|
-
|
|
31580
|
-
if (params.ModifyResponseHeaderParameters) {
|
|
31581
|
-
let obj = new ModifyResponseHeaderParameters();
|
|
31582
|
-
obj.deserialize(params.ModifyResponseHeaderParameters)
|
|
31583
|
-
this.ModifyResponseHeaderParameters = obj;
|
|
31584
|
-
}
|
|
31585
|
-
|
|
31586
|
-
if (params.ModifyRequestHeaderParameters) {
|
|
31587
|
-
let obj = new ModifyRequestHeaderParameters();
|
|
31588
|
-
obj.deserialize(params.ModifyRequestHeaderParameters)
|
|
31589
|
-
this.ModifyRequestHeaderParameters = obj;
|
|
31590
|
-
}
|
|
31591
|
-
|
|
31592
|
-
if (params.ResponseSpeedLimitParameters) {
|
|
31593
|
-
let obj = new ResponseSpeedLimitParameters();
|
|
31594
|
-
obj.deserialize(params.ResponseSpeedLimitParameters)
|
|
31595
|
-
this.ResponseSpeedLimitParameters = obj;
|
|
31596
|
-
}
|
|
31597
|
-
|
|
31598
|
-
if (params.SetContentIdentifierParameters) {
|
|
31599
|
-
let obj = new SetContentIdentifierParameters();
|
|
31600
|
-
obj.deserialize(params.SetContentIdentifierParameters)
|
|
31601
|
-
this.SetContentIdentifierParameters = obj;
|
|
31602
|
-
}
|
|
31603
|
-
|
|
31604
|
-
if (params.VaryParameters) {
|
|
31605
|
-
let obj = new VaryParameters();
|
|
31606
|
-
obj.deserialize(params.VaryParameters)
|
|
31607
|
-
this.VaryParameters = obj;
|
|
31608
|
-
}
|
|
31370
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
31371
|
+
this.GatewayId = 'GatewayId' in params ? params.GatewayId : null;
|
|
31609
31372
|
|
|
31610
31373
|
}
|
|
31611
31374
|
}
|
|
@@ -33117,6 +32880,48 @@ Note: this field may return null, which indicates a failure to obtain a valid va
|
|
|
33117
32880
|
}
|
|
33118
32881
|
}
|
|
33119
32882
|
|
|
32883
|
+
/**
|
|
32884
|
+
* ModifyMultiPathGatewayStatus request structure.
|
|
32885
|
+
* @class
|
|
32886
|
+
*/
|
|
32887
|
+
class ModifyMultiPathGatewayStatusRequest extends AbstractModel {
|
|
32888
|
+
constructor(){
|
|
32889
|
+
super();
|
|
32890
|
+
|
|
32891
|
+
/**
|
|
32892
|
+
* Gateway ID.
|
|
32893
|
+
* @type {string || null}
|
|
32894
|
+
*/
|
|
32895
|
+
this.GatewayId = null;
|
|
32896
|
+
|
|
32897
|
+
/**
|
|
32898
|
+
* Zone ID.
|
|
32899
|
+
* @type {string || null}
|
|
32900
|
+
*/
|
|
32901
|
+
this.ZoneId = null;
|
|
32902
|
+
|
|
32903
|
+
/**
|
|
32904
|
+
* Modifies the enabled/disabled status of the gateway. valid values: <li> offline: disabled;</li> <li> online: enabled.</li>.
|
|
32905
|
+
* @type {string || null}
|
|
32906
|
+
*/
|
|
32907
|
+
this.GatewayStatus = null;
|
|
32908
|
+
|
|
32909
|
+
}
|
|
32910
|
+
|
|
32911
|
+
/**
|
|
32912
|
+
* @private
|
|
32913
|
+
*/
|
|
32914
|
+
deserialize(params) {
|
|
32915
|
+
if (!params) {
|
|
32916
|
+
return;
|
|
32917
|
+
}
|
|
32918
|
+
this.GatewayId = 'GatewayId' in params ? params.GatewayId : null;
|
|
32919
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
32920
|
+
this.GatewayStatus = 'GatewayStatus' in params ? params.GatewayStatus : null;
|
|
32921
|
+
|
|
32922
|
+
}
|
|
32923
|
+
}
|
|
32924
|
+
|
|
33120
32925
|
/**
|
|
33121
32926
|
* DeleteSecurityClientAttester response structure.
|
|
33122
32927
|
* @class
|
|
@@ -34736,6 +34541,56 @@ class DescribeConfigGroupVersionsRequest extends AbstractModel {
|
|
|
34736
34541
|
}
|
|
34737
34542
|
}
|
|
34738
34543
|
|
|
34544
|
+
/**
|
|
34545
|
+
* Describes the currently effective IP range for origin servers.
|
|
34546
|
+
* @class
|
|
34547
|
+
*/
|
|
34548
|
+
class MultiPathGatewayCurrentOriginACL extends AbstractModel {
|
|
34549
|
+
constructor(){
|
|
34550
|
+
super();
|
|
34551
|
+
|
|
34552
|
+
/**
|
|
34553
|
+
* Describes the IP range details for origin servers.
|
|
34554
|
+
* @type {Addresses || null}
|
|
34555
|
+
*/
|
|
34556
|
+
this.EntireAddresses = null;
|
|
34557
|
+
|
|
34558
|
+
/**
|
|
34559
|
+
* Specifies the version number.
|
|
34560
|
+
* @type {number || null}
|
|
34561
|
+
*/
|
|
34562
|
+
this.Version = null;
|
|
34563
|
+
|
|
34564
|
+
/**
|
|
34565
|
+
* This parameter records whether "i have updated to the latest origin IP range" is completed before taking effect. valid values:.
|
|
34566
|
+
<li>true: confirms the update to the latest origin IP is completed.</li>.
|
|
34567
|
+
<li>false: indicates the update to the latest origin IP is not completed.</li>.
|
|
34568
|
+
Note: when false is returned for this parameter, please confirm in time whether your origin server firewall configuration has been updated to the latest IP range to avoid origin-pull failure.
|
|
34569
|
+
* @type {string || null}
|
|
34570
|
+
*/
|
|
34571
|
+
this.IsPlaned = null;
|
|
34572
|
+
|
|
34573
|
+
}
|
|
34574
|
+
|
|
34575
|
+
/**
|
|
34576
|
+
* @private
|
|
34577
|
+
*/
|
|
34578
|
+
deserialize(params) {
|
|
34579
|
+
if (!params) {
|
|
34580
|
+
return;
|
|
34581
|
+
}
|
|
34582
|
+
|
|
34583
|
+
if (params.EntireAddresses) {
|
|
34584
|
+
let obj = new Addresses();
|
|
34585
|
+
obj.deserialize(params.EntireAddresses)
|
|
34586
|
+
this.EntireAddresses = obj;
|
|
34587
|
+
}
|
|
34588
|
+
this.Version = 'Version' in params ? params.Version : null;
|
|
34589
|
+
this.IsPlaned = 'IsPlaned' in params ? params.IsPlaned : null;
|
|
34590
|
+
|
|
34591
|
+
}
|
|
34592
|
+
}
|
|
34593
|
+
|
|
34739
34594
|
/**
|
|
34740
34595
|
* DescribeL4ProxyRules request structure.
|
|
34741
34596
|
* @class
|
|
@@ -36268,6 +36123,537 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
36268
36123
|
}
|
|
36269
36124
|
}
|
|
36270
36125
|
|
|
36126
|
+
/**
|
|
36127
|
+
* Rule engine operations.
|
|
36128
|
+
* @class
|
|
36129
|
+
*/
|
|
36130
|
+
class RuleEngineAction extends AbstractModel {
|
|
36131
|
+
constructor(){
|
|
36132
|
+
super();
|
|
36133
|
+
|
|
36134
|
+
/**
|
|
36135
|
+
* Operation Name. the Name must correspond to the parameter structure, for example, if Name=Cache, CacheParameters is required.
|
|
36136
|
+
<li>Cache: specifies the node Cache TTL.</li>.
|
|
36137
|
+
<Li>CacheKey: specifies the custom cache key.</li>.
|
|
36138
|
+
<Li>CachePrefresh: cache pre-refresh;</li>.
|
|
36139
|
+
<Li>AccessURLRedirect: url redirection;</li>.
|
|
36140
|
+
<Li>UpstreamURLRewrite: specifies the origin-pull url rewrite.</li>.
|
|
36141
|
+
<li>QUIC:QUIC;</li>
|
|
36142
|
+
<li>WebSocket:WebSocket;</li>
|
|
36143
|
+
<li>Authentication: Token Authentication;</li>.
|
|
36144
|
+
<li>MaxAge: browser caching TTL;</li>.
|
|
36145
|
+
<li>StatusCodeCache: specifies the status code cache TTL.</li>.
|
|
36146
|
+
<Li>OfflineCache: offline caching;</li>.
|
|
36147
|
+
<Li>SmartRouting: smart acceleration;</li>.
|
|
36148
|
+
<Li>RangeOriginPull: range-based origin pull;</li>.
|
|
36149
|
+
<Li>UpstreamHTTP2: http/2 origin pull;</li>.
|
|
36150
|
+
<Li>HostHeader: host header rewrite;</li>.
|
|
36151
|
+
<Li>`ForceRedirectHTTPS`: force https redirect configuration for access protocol.</li>.
|
|
36152
|
+
<li>OriginPullProtocol: HTTPS origin pull;</li>.
|
|
36153
|
+
<Li>Compression: intelligent compression configuration;</li>.
|
|
36154
|
+
<li>HSTS:HSTS;</li>
|
|
36155
|
+
<Li>ClientIPHeader: configuration for storing client request ip in header information;</li>.
|
|
36156
|
+
<Li>OCSPStapling: ocsp stapling;</li>.
|
|
36157
|
+
<Li>HTTP2: http/2 integration;</li>.
|
|
36158
|
+
<li>PostMaxSize: maximum size of the file uploaded for streaming via a POST request;</li>.
|
|
36159
|
+
<Li>ClientIPCountry: region of the client ip during origin-pull;</li>.
|
|
36160
|
+
<Li>UpstreamFollowRedirect: specifies the parameter configuration for redirection during origin pull.</li>.
|
|
36161
|
+
<Li>UpstreamRequest: origin pull request parameter;</li>.
|
|
36162
|
+
<li>TLSConfig: specifies SSL/TLS security.</li>.
|
|
36163
|
+
<Li>ModifyOrigin: modify origin server;</li>.
|
|
36164
|
+
<Li>HTTPUpstreamTimeout: specifies the layer 7 origin pull timeout configuration.</li>.
|
|
36165
|
+
<li>HttpResponse: HTTP response;</li>.
|
|
36166
|
+
<Li>ErrorPage: specifies the custom error page.</li>.
|
|
36167
|
+
<li>ModifyResponseHeader: modifies the HTTP node response header.</li>.
|
|
36168
|
+
<li>ModifyRequestHeader: modifies the HTTP node request header.</li>.
|
|
36169
|
+
<Li>ResponseSpeedLimit: download speed limit for a single connection;</li>.
|
|
36170
|
+
<Li>SetContentIdentifier: sets the content identifier;</li>.
|
|
36171
|
+
<Li>Vary: vary feature configuration.</li>.
|
|
36172
|
+
* @type {string || null}
|
|
36173
|
+
*/
|
|
36174
|
+
this.Name = null;
|
|
36175
|
+
|
|
36176
|
+
/**
|
|
36177
|
+
* Node cache ttl configuration parameter. when name is cache, this parameter is required.
|
|
36178
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36179
|
+
* @type {CacheParameters || null}
|
|
36180
|
+
*/
|
|
36181
|
+
this.CacheParameters = null;
|
|
36182
|
+
|
|
36183
|
+
/**
|
|
36184
|
+
* Custom cache key configuration parameter. when name is cachekey, this parameter is required.
|
|
36185
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36186
|
+
* @type {CacheKeyParameters || null}
|
|
36187
|
+
*/
|
|
36188
|
+
this.CacheKeyParameters = null;
|
|
36189
|
+
|
|
36190
|
+
/**
|
|
36191
|
+
* The cache prefresh configuration parameter. this parameter is required when `name` is `cacheprefresh`.
|
|
36192
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36193
|
+
* @type {CachePrefreshParameters || null}
|
|
36194
|
+
*/
|
|
36195
|
+
this.CachePrefreshParameters = null;
|
|
36196
|
+
|
|
36197
|
+
/**
|
|
36198
|
+
* The access url redirection configuration parameter. this parameter is required when `name` is `accessurlredirect`.
|
|
36199
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36200
|
+
* @type {AccessURLRedirectParameters || null}
|
|
36201
|
+
*/
|
|
36202
|
+
this.AccessURLRedirectParameters = null;
|
|
36203
|
+
|
|
36204
|
+
/**
|
|
36205
|
+
* The origin-pull url rewrite configuration parameter. this parameter is required when `name` is `upstreamurlrewrite`.
|
|
36206
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36207
|
+
* @type {UpstreamURLRewriteParameters || null}
|
|
36208
|
+
*/
|
|
36209
|
+
this.UpstreamURLRewriteParameters = null;
|
|
36210
|
+
|
|
36211
|
+
/**
|
|
36212
|
+
* The quic configuration parameter. this parameter is required when `name` is `quic`.
|
|
36213
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36214
|
+
* @type {QUICParameters || null}
|
|
36215
|
+
*/
|
|
36216
|
+
this.QUICParameters = null;
|
|
36217
|
+
|
|
36218
|
+
/**
|
|
36219
|
+
* The websocket configuration parameter. this parameter is required when `name` is `websocket`.
|
|
36220
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36221
|
+
* @type {WebSocketParameters || null}
|
|
36222
|
+
*/
|
|
36223
|
+
this.WebSocketParameters = null;
|
|
36224
|
+
|
|
36225
|
+
/**
|
|
36226
|
+
* Token authentication configuration parameter. this parameter is required when `name` is `authentication`.
|
|
36227
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36228
|
+
* @type {AuthenticationParameters || null}
|
|
36229
|
+
*/
|
|
36230
|
+
this.AuthenticationParameters = null;
|
|
36231
|
+
|
|
36232
|
+
/**
|
|
36233
|
+
* Browser cache ttl configuration parameter. this parameter is required when `name` is `maxage`.
|
|
36234
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36235
|
+
* @type {MaxAgeParameters || null}
|
|
36236
|
+
*/
|
|
36237
|
+
this.MaxAgeParameters = null;
|
|
36238
|
+
|
|
36239
|
+
/**
|
|
36240
|
+
* Status code cache ttl configuration parameter. this parameter is required when `name` is `statuscodecache`.
|
|
36241
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36242
|
+
* @type {StatusCodeCacheParameters || null}
|
|
36243
|
+
*/
|
|
36244
|
+
this.StatusCodeCacheParameters = null;
|
|
36245
|
+
|
|
36246
|
+
/**
|
|
36247
|
+
* Offline cache configuration parameter. this parameter is required when `name` is `offlinecache`.
|
|
36248
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36249
|
+
* @type {OfflineCacheParameters || null}
|
|
36250
|
+
*/
|
|
36251
|
+
this.OfflineCacheParameters = null;
|
|
36252
|
+
|
|
36253
|
+
/**
|
|
36254
|
+
* Smart acceleration configuration parameter. this parameter is required when `name` is `smartrouting`.
|
|
36255
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36256
|
+
* @type {SmartRoutingParameters || null}
|
|
36257
|
+
*/
|
|
36258
|
+
this.SmartRoutingParameters = null;
|
|
36259
|
+
|
|
36260
|
+
/**
|
|
36261
|
+
* Shard source retrieval configuration parameter. this parameter is required when name is set to rangeoriginpull.
|
|
36262
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36263
|
+
* @type {RangeOriginPullParameters || null}
|
|
36264
|
+
*/
|
|
36265
|
+
this.RangeOriginPullParameters = null;
|
|
36266
|
+
|
|
36267
|
+
/**
|
|
36268
|
+
* HTTP2 origin-pull configuration parameter. this parameter is required when name is set to upstreamhttp2.
|
|
36269
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36270
|
+
* @type {UpstreamHTTP2Parameters || null}
|
|
36271
|
+
*/
|
|
36272
|
+
this.UpstreamHTTP2Parameters = null;
|
|
36273
|
+
|
|
36274
|
+
/**
|
|
36275
|
+
* Host header rewrite configuration parameter. this parameter is required when name is set to hostheader.
|
|
36276
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36277
|
+
* @type {HostHeaderParameters || null}
|
|
36278
|
+
*/
|
|
36279
|
+
this.HostHeaderParameters = null;
|
|
36280
|
+
|
|
36281
|
+
/**
|
|
36282
|
+
* Force https redirect configuration parameter. this parameter is required when the name is set to forceredirecthttps.
|
|
36283
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36284
|
+
* @type {ForceRedirectHTTPSParameters || null}
|
|
36285
|
+
*/
|
|
36286
|
+
this.ForceRedirectHTTPSParameters = null;
|
|
36287
|
+
|
|
36288
|
+
/**
|
|
36289
|
+
*
|
|
36290
|
+
* @type {OriginPullProtocolParameters || null}
|
|
36291
|
+
*/
|
|
36292
|
+
this.OriginPullProtocolParameters = null;
|
|
36293
|
+
|
|
36294
|
+
/**
|
|
36295
|
+
* Intelligent compression configuration. this parameter is required when name is set to compression.
|
|
36296
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36297
|
+
* @type {CompressionParameters || null}
|
|
36298
|
+
*/
|
|
36299
|
+
this.CompressionParameters = null;
|
|
36300
|
+
|
|
36301
|
+
/**
|
|
36302
|
+
* HSTS configuration parameter. this parameter is required when name is hsts.
|
|
36303
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36304
|
+
* @type {HSTSParameters || null}
|
|
36305
|
+
*/
|
|
36306
|
+
this.HSTSParameters = null;
|
|
36307
|
+
|
|
36308
|
+
/**
|
|
36309
|
+
* Client ip header configuration for storing client request ip information. this parameter is required when name is clientipheader.
|
|
36310
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36311
|
+
* @type {ClientIPHeaderParameters || null}
|
|
36312
|
+
*/
|
|
36313
|
+
this.ClientIPHeaderParameters = null;
|
|
36314
|
+
|
|
36315
|
+
/**
|
|
36316
|
+
* OCSP stapling configuration parameter. this parameter is required when the name is set to ocspstapling.
|
|
36317
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36318
|
+
* @type {OCSPStaplingParameters || null}
|
|
36319
|
+
*/
|
|
36320
|
+
this.OCSPStaplingParameters = null;
|
|
36321
|
+
|
|
36322
|
+
/**
|
|
36323
|
+
* HTTP2 access configuration parameter. this parameter is required when name is http2.
|
|
36324
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36325
|
+
* @type {HTTP2Parameters || null}
|
|
36326
|
+
*/
|
|
36327
|
+
this.HTTP2Parameters = null;
|
|
36328
|
+
|
|
36329
|
+
/**
|
|
36330
|
+
* Maximum size configuration for file streaming upload via a post request. this parameter is required when name is postmaxsize.
|
|
36331
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36332
|
+
* @type {PostMaxSizeParameters || null}
|
|
36333
|
+
*/
|
|
36334
|
+
this.PostMaxSizeParameters = null;
|
|
36335
|
+
|
|
36336
|
+
/**
|
|
36337
|
+
* Configuration parameter for carrying the region information of the client ip during origin-pull. this parameter is required when the name is set to clientipcountry.
|
|
36338
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36339
|
+
* @type {ClientIPCountryParameters || null}
|
|
36340
|
+
*/
|
|
36341
|
+
this.ClientIPCountryParameters = null;
|
|
36342
|
+
|
|
36343
|
+
/**
|
|
36344
|
+
* Configuration parameter for following redirects during origin-pull. this parameter is required when the name is set to upstreamfollowredirect.
|
|
36345
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36346
|
+
* @type {UpstreamFollowRedirectParameters || null}
|
|
36347
|
+
*/
|
|
36348
|
+
this.UpstreamFollowRedirectParameters = null;
|
|
36349
|
+
|
|
36350
|
+
/**
|
|
36351
|
+
* Configuration parameter for origin-pull request. this parameter is required when the name is set to upstreamrequest.
|
|
36352
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36353
|
+
* @type {UpstreamRequestParameters || null}
|
|
36354
|
+
*/
|
|
36355
|
+
this.UpstreamRequestParameters = null;
|
|
36356
|
+
|
|
36357
|
+
/**
|
|
36358
|
+
* SSL/TLS security configuration parameter. this parameter is required when the name is set to tlsconfig.
|
|
36359
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36360
|
+
* @type {TLSConfigParameters || null}
|
|
36361
|
+
*/
|
|
36362
|
+
this.TLSConfigParameters = null;
|
|
36363
|
+
|
|
36364
|
+
/**
|
|
36365
|
+
* Configuration parameter for modifying the origin server. this parameter is required when the name is set to modifyorigin.
|
|
36366
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36367
|
+
* @type {ModifyOriginParameters || null}
|
|
36368
|
+
*/
|
|
36369
|
+
this.ModifyOriginParameters = null;
|
|
36370
|
+
|
|
36371
|
+
/**
|
|
36372
|
+
* Configuration of layer 7 origin timeout. this parameter is required when name is httpupstreamtimeout.
|
|
36373
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36374
|
+
* @type {HTTPUpstreamTimeoutParameters || null}
|
|
36375
|
+
*/
|
|
36376
|
+
this.HTTPUpstreamTimeoutParameters = null;
|
|
36377
|
+
|
|
36378
|
+
/**
|
|
36379
|
+
* HTTP response configuration parameters. this parameter is required when name is httpresponse.
|
|
36380
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36381
|
+
* @type {HTTPResponseParameters || null}
|
|
36382
|
+
*/
|
|
36383
|
+
this.HttpResponseParameters = null;
|
|
36384
|
+
|
|
36385
|
+
/**
|
|
36386
|
+
* Custom error page configuration parameters. this parameter is required when name is errorpage.
|
|
36387
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36388
|
+
* @type {ErrorPageParameters || null}
|
|
36389
|
+
*/
|
|
36390
|
+
this.ErrorPageParameters = null;
|
|
36391
|
+
|
|
36392
|
+
/**
|
|
36393
|
+
* Modify http node response header configuration parameters. this parameter is required when name is modifyresponseheader.
|
|
36394
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36395
|
+
* @type {ModifyResponseHeaderParameters || null}
|
|
36396
|
+
*/
|
|
36397
|
+
this.ModifyResponseHeaderParameters = null;
|
|
36398
|
+
|
|
36399
|
+
/**
|
|
36400
|
+
* Modify http node request header configuration parameters. this parameter is required when name is modifyrequestheader.
|
|
36401
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36402
|
+
* @type {ModifyRequestHeaderParameters || null}
|
|
36403
|
+
*/
|
|
36404
|
+
this.ModifyRequestHeaderParameters = null;
|
|
36405
|
+
|
|
36406
|
+
/**
|
|
36407
|
+
* Single connection download speed limit configuration parameter. this parameter is required when name is responsespeedlimit.
|
|
36408
|
+
Note: this field may return null, which indicates a failure to obtain a valid value.
|
|
36409
|
+
* @type {ResponseSpeedLimitParameters || null}
|
|
36410
|
+
*/
|
|
36411
|
+
this.ResponseSpeedLimitParameters = null;
|
|
36412
|
+
|
|
36413
|
+
/**
|
|
36414
|
+
* Specifies the content identification configuration parameter. this parameter is required when the Name value is SetContentIdentifier.
|
|
36415
|
+
|
|
36416
|
+
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
36417
|
+
* @type {SetContentIdentifierParameters || null}
|
|
36418
|
+
*/
|
|
36419
|
+
this.SetContentIdentifierParameters = null;
|
|
36420
|
+
|
|
36421
|
+
/**
|
|
36422
|
+
* Vary feature configuration parameter. when Name value is Vary, this parameter is required.
|
|
36423
|
+
* @type {VaryParameters || null}
|
|
36424
|
+
*/
|
|
36425
|
+
this.VaryParameters = null;
|
|
36426
|
+
|
|
36427
|
+
}
|
|
36428
|
+
|
|
36429
|
+
/**
|
|
36430
|
+
* @private
|
|
36431
|
+
*/
|
|
36432
|
+
deserialize(params) {
|
|
36433
|
+
if (!params) {
|
|
36434
|
+
return;
|
|
36435
|
+
}
|
|
36436
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
36437
|
+
|
|
36438
|
+
if (params.CacheParameters) {
|
|
36439
|
+
let obj = new CacheParameters();
|
|
36440
|
+
obj.deserialize(params.CacheParameters)
|
|
36441
|
+
this.CacheParameters = obj;
|
|
36442
|
+
}
|
|
36443
|
+
|
|
36444
|
+
if (params.CacheKeyParameters) {
|
|
36445
|
+
let obj = new CacheKeyParameters();
|
|
36446
|
+
obj.deserialize(params.CacheKeyParameters)
|
|
36447
|
+
this.CacheKeyParameters = obj;
|
|
36448
|
+
}
|
|
36449
|
+
|
|
36450
|
+
if (params.CachePrefreshParameters) {
|
|
36451
|
+
let obj = new CachePrefreshParameters();
|
|
36452
|
+
obj.deserialize(params.CachePrefreshParameters)
|
|
36453
|
+
this.CachePrefreshParameters = obj;
|
|
36454
|
+
}
|
|
36455
|
+
|
|
36456
|
+
if (params.AccessURLRedirectParameters) {
|
|
36457
|
+
let obj = new AccessURLRedirectParameters();
|
|
36458
|
+
obj.deserialize(params.AccessURLRedirectParameters)
|
|
36459
|
+
this.AccessURLRedirectParameters = obj;
|
|
36460
|
+
}
|
|
36461
|
+
|
|
36462
|
+
if (params.UpstreamURLRewriteParameters) {
|
|
36463
|
+
let obj = new UpstreamURLRewriteParameters();
|
|
36464
|
+
obj.deserialize(params.UpstreamURLRewriteParameters)
|
|
36465
|
+
this.UpstreamURLRewriteParameters = obj;
|
|
36466
|
+
}
|
|
36467
|
+
|
|
36468
|
+
if (params.QUICParameters) {
|
|
36469
|
+
let obj = new QUICParameters();
|
|
36470
|
+
obj.deserialize(params.QUICParameters)
|
|
36471
|
+
this.QUICParameters = obj;
|
|
36472
|
+
}
|
|
36473
|
+
|
|
36474
|
+
if (params.WebSocketParameters) {
|
|
36475
|
+
let obj = new WebSocketParameters();
|
|
36476
|
+
obj.deserialize(params.WebSocketParameters)
|
|
36477
|
+
this.WebSocketParameters = obj;
|
|
36478
|
+
}
|
|
36479
|
+
|
|
36480
|
+
if (params.AuthenticationParameters) {
|
|
36481
|
+
let obj = new AuthenticationParameters();
|
|
36482
|
+
obj.deserialize(params.AuthenticationParameters)
|
|
36483
|
+
this.AuthenticationParameters = obj;
|
|
36484
|
+
}
|
|
36485
|
+
|
|
36486
|
+
if (params.MaxAgeParameters) {
|
|
36487
|
+
let obj = new MaxAgeParameters();
|
|
36488
|
+
obj.deserialize(params.MaxAgeParameters)
|
|
36489
|
+
this.MaxAgeParameters = obj;
|
|
36490
|
+
}
|
|
36491
|
+
|
|
36492
|
+
if (params.StatusCodeCacheParameters) {
|
|
36493
|
+
let obj = new StatusCodeCacheParameters();
|
|
36494
|
+
obj.deserialize(params.StatusCodeCacheParameters)
|
|
36495
|
+
this.StatusCodeCacheParameters = obj;
|
|
36496
|
+
}
|
|
36497
|
+
|
|
36498
|
+
if (params.OfflineCacheParameters) {
|
|
36499
|
+
let obj = new OfflineCacheParameters();
|
|
36500
|
+
obj.deserialize(params.OfflineCacheParameters)
|
|
36501
|
+
this.OfflineCacheParameters = obj;
|
|
36502
|
+
}
|
|
36503
|
+
|
|
36504
|
+
if (params.SmartRoutingParameters) {
|
|
36505
|
+
let obj = new SmartRoutingParameters();
|
|
36506
|
+
obj.deserialize(params.SmartRoutingParameters)
|
|
36507
|
+
this.SmartRoutingParameters = obj;
|
|
36508
|
+
}
|
|
36509
|
+
|
|
36510
|
+
if (params.RangeOriginPullParameters) {
|
|
36511
|
+
let obj = new RangeOriginPullParameters();
|
|
36512
|
+
obj.deserialize(params.RangeOriginPullParameters)
|
|
36513
|
+
this.RangeOriginPullParameters = obj;
|
|
36514
|
+
}
|
|
36515
|
+
|
|
36516
|
+
if (params.UpstreamHTTP2Parameters) {
|
|
36517
|
+
let obj = new UpstreamHTTP2Parameters();
|
|
36518
|
+
obj.deserialize(params.UpstreamHTTP2Parameters)
|
|
36519
|
+
this.UpstreamHTTP2Parameters = obj;
|
|
36520
|
+
}
|
|
36521
|
+
|
|
36522
|
+
if (params.HostHeaderParameters) {
|
|
36523
|
+
let obj = new HostHeaderParameters();
|
|
36524
|
+
obj.deserialize(params.HostHeaderParameters)
|
|
36525
|
+
this.HostHeaderParameters = obj;
|
|
36526
|
+
}
|
|
36527
|
+
|
|
36528
|
+
if (params.ForceRedirectHTTPSParameters) {
|
|
36529
|
+
let obj = new ForceRedirectHTTPSParameters();
|
|
36530
|
+
obj.deserialize(params.ForceRedirectHTTPSParameters)
|
|
36531
|
+
this.ForceRedirectHTTPSParameters = obj;
|
|
36532
|
+
}
|
|
36533
|
+
|
|
36534
|
+
if (params.OriginPullProtocolParameters) {
|
|
36535
|
+
let obj = new OriginPullProtocolParameters();
|
|
36536
|
+
obj.deserialize(params.OriginPullProtocolParameters)
|
|
36537
|
+
this.OriginPullProtocolParameters = obj;
|
|
36538
|
+
}
|
|
36539
|
+
|
|
36540
|
+
if (params.CompressionParameters) {
|
|
36541
|
+
let obj = new CompressionParameters();
|
|
36542
|
+
obj.deserialize(params.CompressionParameters)
|
|
36543
|
+
this.CompressionParameters = obj;
|
|
36544
|
+
}
|
|
36545
|
+
|
|
36546
|
+
if (params.HSTSParameters) {
|
|
36547
|
+
let obj = new HSTSParameters();
|
|
36548
|
+
obj.deserialize(params.HSTSParameters)
|
|
36549
|
+
this.HSTSParameters = obj;
|
|
36550
|
+
}
|
|
36551
|
+
|
|
36552
|
+
if (params.ClientIPHeaderParameters) {
|
|
36553
|
+
let obj = new ClientIPHeaderParameters();
|
|
36554
|
+
obj.deserialize(params.ClientIPHeaderParameters)
|
|
36555
|
+
this.ClientIPHeaderParameters = obj;
|
|
36556
|
+
}
|
|
36557
|
+
|
|
36558
|
+
if (params.OCSPStaplingParameters) {
|
|
36559
|
+
let obj = new OCSPStaplingParameters();
|
|
36560
|
+
obj.deserialize(params.OCSPStaplingParameters)
|
|
36561
|
+
this.OCSPStaplingParameters = obj;
|
|
36562
|
+
}
|
|
36563
|
+
|
|
36564
|
+
if (params.HTTP2Parameters) {
|
|
36565
|
+
let obj = new HTTP2Parameters();
|
|
36566
|
+
obj.deserialize(params.HTTP2Parameters)
|
|
36567
|
+
this.HTTP2Parameters = obj;
|
|
36568
|
+
}
|
|
36569
|
+
|
|
36570
|
+
if (params.PostMaxSizeParameters) {
|
|
36571
|
+
let obj = new PostMaxSizeParameters();
|
|
36572
|
+
obj.deserialize(params.PostMaxSizeParameters)
|
|
36573
|
+
this.PostMaxSizeParameters = obj;
|
|
36574
|
+
}
|
|
36575
|
+
|
|
36576
|
+
if (params.ClientIPCountryParameters) {
|
|
36577
|
+
let obj = new ClientIPCountryParameters();
|
|
36578
|
+
obj.deserialize(params.ClientIPCountryParameters)
|
|
36579
|
+
this.ClientIPCountryParameters = obj;
|
|
36580
|
+
}
|
|
36581
|
+
|
|
36582
|
+
if (params.UpstreamFollowRedirectParameters) {
|
|
36583
|
+
let obj = new UpstreamFollowRedirectParameters();
|
|
36584
|
+
obj.deserialize(params.UpstreamFollowRedirectParameters)
|
|
36585
|
+
this.UpstreamFollowRedirectParameters = obj;
|
|
36586
|
+
}
|
|
36587
|
+
|
|
36588
|
+
if (params.UpstreamRequestParameters) {
|
|
36589
|
+
let obj = new UpstreamRequestParameters();
|
|
36590
|
+
obj.deserialize(params.UpstreamRequestParameters)
|
|
36591
|
+
this.UpstreamRequestParameters = obj;
|
|
36592
|
+
}
|
|
36593
|
+
|
|
36594
|
+
if (params.TLSConfigParameters) {
|
|
36595
|
+
let obj = new TLSConfigParameters();
|
|
36596
|
+
obj.deserialize(params.TLSConfigParameters)
|
|
36597
|
+
this.TLSConfigParameters = obj;
|
|
36598
|
+
}
|
|
36599
|
+
|
|
36600
|
+
if (params.ModifyOriginParameters) {
|
|
36601
|
+
let obj = new ModifyOriginParameters();
|
|
36602
|
+
obj.deserialize(params.ModifyOriginParameters)
|
|
36603
|
+
this.ModifyOriginParameters = obj;
|
|
36604
|
+
}
|
|
36605
|
+
|
|
36606
|
+
if (params.HTTPUpstreamTimeoutParameters) {
|
|
36607
|
+
let obj = new HTTPUpstreamTimeoutParameters();
|
|
36608
|
+
obj.deserialize(params.HTTPUpstreamTimeoutParameters)
|
|
36609
|
+
this.HTTPUpstreamTimeoutParameters = obj;
|
|
36610
|
+
}
|
|
36611
|
+
|
|
36612
|
+
if (params.HttpResponseParameters) {
|
|
36613
|
+
let obj = new HTTPResponseParameters();
|
|
36614
|
+
obj.deserialize(params.HttpResponseParameters)
|
|
36615
|
+
this.HttpResponseParameters = obj;
|
|
36616
|
+
}
|
|
36617
|
+
|
|
36618
|
+
if (params.ErrorPageParameters) {
|
|
36619
|
+
let obj = new ErrorPageParameters();
|
|
36620
|
+
obj.deserialize(params.ErrorPageParameters)
|
|
36621
|
+
this.ErrorPageParameters = obj;
|
|
36622
|
+
}
|
|
36623
|
+
|
|
36624
|
+
if (params.ModifyResponseHeaderParameters) {
|
|
36625
|
+
let obj = new ModifyResponseHeaderParameters();
|
|
36626
|
+
obj.deserialize(params.ModifyResponseHeaderParameters)
|
|
36627
|
+
this.ModifyResponseHeaderParameters = obj;
|
|
36628
|
+
}
|
|
36629
|
+
|
|
36630
|
+
if (params.ModifyRequestHeaderParameters) {
|
|
36631
|
+
let obj = new ModifyRequestHeaderParameters();
|
|
36632
|
+
obj.deserialize(params.ModifyRequestHeaderParameters)
|
|
36633
|
+
this.ModifyRequestHeaderParameters = obj;
|
|
36634
|
+
}
|
|
36635
|
+
|
|
36636
|
+
if (params.ResponseSpeedLimitParameters) {
|
|
36637
|
+
let obj = new ResponseSpeedLimitParameters();
|
|
36638
|
+
obj.deserialize(params.ResponseSpeedLimitParameters)
|
|
36639
|
+
this.ResponseSpeedLimitParameters = obj;
|
|
36640
|
+
}
|
|
36641
|
+
|
|
36642
|
+
if (params.SetContentIdentifierParameters) {
|
|
36643
|
+
let obj = new SetContentIdentifierParameters();
|
|
36644
|
+
obj.deserialize(params.SetContentIdentifierParameters)
|
|
36645
|
+
this.SetContentIdentifierParameters = obj;
|
|
36646
|
+
}
|
|
36647
|
+
|
|
36648
|
+
if (params.VaryParameters) {
|
|
36649
|
+
let obj = new VaryParameters();
|
|
36650
|
+
obj.deserialize(params.VaryParameters)
|
|
36651
|
+
this.VaryParameters = obj;
|
|
36652
|
+
}
|
|
36653
|
+
|
|
36654
|
+
}
|
|
36655
|
+
}
|
|
36656
|
+
|
|
36271
36657
|
/**
|
|
36272
36658
|
* IP information of the custom name server
|
|
36273
36659
|
* @class
|
|
@@ -36324,6 +36710,7 @@ module.exports = {
|
|
|
36324
36710
|
CompressionParameters: CompressionParameters,
|
|
36325
36711
|
DescribeConfigGroupVersionDetailResponse: DescribeConfigGroupVersionDetailResponse,
|
|
36326
36712
|
OriginDetail: OriginDetail,
|
|
36713
|
+
MultiPathGatewayOriginACLInfo: MultiPathGatewayOriginACLInfo,
|
|
36327
36714
|
HeaderAction: HeaderAction,
|
|
36328
36715
|
RealtimeLogDeliveryTask: RealtimeLogDeliveryTask,
|
|
36329
36716
|
PrepaidPlanParam: PrepaidPlanParam,
|
|
@@ -36602,6 +36989,7 @@ module.exports = {
|
|
|
36602
36989
|
DeployRecord: DeployRecord,
|
|
36603
36990
|
CreatePlanForZoneRequest: CreatePlanForZoneRequest,
|
|
36604
36991
|
DeviceProfile: DeviceProfile,
|
|
36992
|
+
ConfirmMultiPathGatewayOriginACLResponse: ConfirmMultiPathGatewayOriginACLResponse,
|
|
36605
36993
|
CreateJustInTimeTranscodeTemplateRequest: CreateJustInTimeTranscodeTemplateRequest,
|
|
36606
36994
|
ModifyCustomErrorPageRequest: ModifyCustomErrorPageRequest,
|
|
36607
36995
|
ModifyFunctionRuleResponse: ModifyFunctionRuleResponse,
|
|
@@ -36609,6 +36997,7 @@ module.exports = {
|
|
|
36609
36997
|
DescribeFunctionRulesResponse: DescribeFunctionRulesResponse,
|
|
36610
36998
|
CacheKey: CacheKey,
|
|
36611
36999
|
DownloadL4LogsResponse: DownloadL4LogsResponse,
|
|
37000
|
+
DescribeMultiPathGatewayOriginACLResponse: DescribeMultiPathGatewayOriginACLResponse,
|
|
36612
37001
|
BindSharedCNAMERequest: BindSharedCNAMERequest,
|
|
36613
37002
|
IpTableConfig: IpTableConfig,
|
|
36614
37003
|
ModifyApplicationProxyStatusRequest: ModifyApplicationProxyStatusRequest,
|
|
@@ -36766,6 +37155,7 @@ module.exports = {
|
|
|
36766
37155
|
RateLimitingRule: RateLimitingRule,
|
|
36767
37156
|
CertificateInfo: CertificateInfo,
|
|
36768
37157
|
CreateApplicationProxyRequest: CreateApplicationProxyRequest,
|
|
37158
|
+
MultiPathGatewayNextOriginACL: MultiPathGatewayNextOriginACL,
|
|
36769
37159
|
CC: CC,
|
|
36770
37160
|
HandleFunctionRuntimeEnvironmentRequest: HandleFunctionRuntimeEnvironmentRequest,
|
|
36771
37161
|
ModifyL4ProxyRulesStatusRequest: ModifyL4ProxyRulesStatusRequest,
|
|
@@ -36846,6 +37236,7 @@ module.exports = {
|
|
|
36846
37236
|
TemplateConfig: TemplateConfig,
|
|
36847
37237
|
ErrorPageReference: ErrorPageReference,
|
|
36848
37238
|
DescribeIdentificationsResponse: DescribeIdentificationsResponse,
|
|
37239
|
+
ConfirmMultiPathGatewayOriginACLRequest: ConfirmMultiPathGatewayOriginACLRequest,
|
|
36849
37240
|
DeleteL4ProxyResponse: DeleteL4ProxyResponse,
|
|
36850
37241
|
ModifyApplicationProxyRuleStatusResponse: ModifyApplicationProxyRuleStatusResponse,
|
|
36851
37242
|
ManagedRuleAutoUpdate: ManagedRuleAutoUpdate,
|
|
@@ -36853,6 +37244,7 @@ module.exports = {
|
|
|
36853
37244
|
IncreasePlanQuotaResponse: IncreasePlanQuotaResponse,
|
|
36854
37245
|
DescribeIPRegionResponse: DescribeIPRegionResponse,
|
|
36855
37246
|
DescribeAvailablePlansRequest: DescribeAvailablePlansRequest,
|
|
37247
|
+
ModifyMultiPathGatewayStatusResponse: ModifyMultiPathGatewayStatusResponse,
|
|
36856
37248
|
DnsVerification: DnsVerification,
|
|
36857
37249
|
AlgDetectSession: AlgDetectSession,
|
|
36858
37250
|
ModifyZoneStatusResponse: ModifyZoneStatusResponse,
|
|
@@ -36883,7 +37275,7 @@ module.exports = {
|
|
|
36883
37275
|
AccelerationDomain: AccelerationDomain,
|
|
36884
37276
|
ContentIdentifier: ContentIdentifier,
|
|
36885
37277
|
CreateCustomizeErrorPageResponse: CreateCustomizeErrorPageResponse,
|
|
36886
|
-
|
|
37278
|
+
DescribeMultiPathGatewayOriginACLRequest: DescribeMultiPathGatewayOriginACLRequest,
|
|
36887
37279
|
StatusCodeCacheParameters: StatusCodeCacheParameters,
|
|
36888
37280
|
RewriteAction: RewriteAction,
|
|
36889
37281
|
TemplateScope: TemplateScope,
|
|
@@ -36917,6 +37309,7 @@ module.exports = {
|
|
|
36917
37309
|
OriginGroupInLoadBalancer: OriginGroupInLoadBalancer,
|
|
36918
37310
|
HTTPResponseParameters: HTTPResponseParameters,
|
|
36919
37311
|
UpstreamRequestParameters: UpstreamRequestParameters,
|
|
37312
|
+
ModifyMultiPathGatewayStatusRequest: ModifyMultiPathGatewayStatusRequest,
|
|
36920
37313
|
DeleteSecurityClientAttesterResponse: DeleteSecurityClientAttesterResponse,
|
|
36921
37314
|
TCRCEOption: TCRCEOption,
|
|
36922
37315
|
NsVerification: NsVerification,
|
|
@@ -36956,6 +37349,7 @@ module.exports = {
|
|
|
36956
37349
|
CreateContentIdentifierResponse: CreateContentIdentifierResponse,
|
|
36957
37350
|
HostHeaderParameters: HostHeaderParameters,
|
|
36958
37351
|
DescribeConfigGroupVersionsRequest: DescribeConfigGroupVersionsRequest,
|
|
37352
|
+
MultiPathGatewayCurrentOriginACL: MultiPathGatewayCurrentOriginACL,
|
|
36959
37353
|
DescribeL4ProxyRulesRequest: DescribeL4ProxyRulesRequest,
|
|
36960
37354
|
AiRule: AiRule,
|
|
36961
37355
|
Function: Function,
|
|
@@ -36986,6 +37380,7 @@ module.exports = {
|
|
|
36986
37380
|
CreateDnsRecordResponse: CreateDnsRecordResponse,
|
|
36987
37381
|
DescribeTimingL4DataRequest: DescribeTimingL4DataRequest,
|
|
36988
37382
|
DescribeTimingL4DataResponse: DescribeTimingL4DataResponse,
|
|
37383
|
+
RuleEngineAction: RuleEngineAction,
|
|
36989
37384
|
VanityNameServersIps: VanityNameServersIps,
|
|
36990
37385
|
|
|
36991
37386
|
}
|