tencentcloud-sdk-nodejs-intl-en 3.0.1205 → 3.0.1206
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.
|
@@ -487,6 +487,54 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
487
487
|
}
|
|
488
488
|
}
|
|
489
489
|
|
|
490
|
+
/**
|
|
491
|
+
* Instances that require configuration origin ACLs.
|
|
492
|
+
* @class
|
|
493
|
+
*/
|
|
494
|
+
class OriginACLEntity extends AbstractModel {
|
|
495
|
+
constructor(){
|
|
496
|
+
super();
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* Instance type. Valid values:
|
|
500
|
+
-l7: L7 acceleration domain;
|
|
501
|
+
-l4: L4 proxy instance.
|
|
502
|
+
* @type {string || null}
|
|
503
|
+
*/
|
|
504
|
+
this.Type = null;
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* Instance detail. Valid values:
|
|
508
|
+
-When Type = l7, please enter the L7 acceleration domain.
|
|
509
|
+
-When Type = l4, please enter the L4 proxy instance ID.
|
|
510
|
+
* @type {Array.<string> || null}
|
|
511
|
+
*/
|
|
512
|
+
this.Instances = null;
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* Operation mode. Valid values:.
|
|
516
|
+
- enable: enabled L7/L4 instances.
|
|
517
|
+
- disable: disable L7/L4 instances.
|
|
518
|
+
* @type {string || null}
|
|
519
|
+
*/
|
|
520
|
+
this.OperationMode = null;
|
|
521
|
+
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* @private
|
|
526
|
+
*/
|
|
527
|
+
deserialize(params) {
|
|
528
|
+
if (!params) {
|
|
529
|
+
return;
|
|
530
|
+
}
|
|
531
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
532
|
+
this.Instances = 'Instances' in params ? params.Instances : null;
|
|
533
|
+
this.OperationMode = 'OperationMode' in params ? params.OperationMode : null;
|
|
534
|
+
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
|
|
490
538
|
/**
|
|
491
539
|
* Smart compression configuration.
|
|
492
540
|
* @class
|
|
@@ -2065,52 +2113,18 @@ class ModifyAccelerationDomainStatusesResponse extends AbstractModel {
|
|
|
2065
2113
|
}
|
|
2066
2114
|
|
|
2067
2115
|
/**
|
|
2068
|
-
*
|
|
2116
|
+
* DescribeOriginACL request structure.
|
|
2069
2117
|
* @class
|
|
2070
2118
|
*/
|
|
2071
|
-
class
|
|
2119
|
+
class DescribeOriginACLRequest extends AbstractModel {
|
|
2072
2120
|
constructor(){
|
|
2073
2121
|
super();
|
|
2074
2122
|
|
|
2075
2123
|
/**
|
|
2076
|
-
*
|
|
2077
|
-
* @type {Array.<ConfigGroupVersionInfo> || null}
|
|
2078
|
-
*/
|
|
2079
|
-
this.ConfigGroupVersionInfos = null;
|
|
2080
|
-
|
|
2081
|
-
/**
|
|
2082
|
-
* Release time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
|
|
2083
|
-
* @type {string || null}
|
|
2084
|
-
*/
|
|
2085
|
-
this.DeployTime = null;
|
|
2086
|
-
|
|
2087
|
-
/**
|
|
2088
|
-
* Release status. Valid values:
|
|
2089
|
-
<li>deploying: Being released.</li>
|
|
2090
|
-
<li>failure: Release failed.</li>
|
|
2091
|
-
<li>success: Released successfully. </li>
|
|
2092
|
-
* @type {string || null}
|
|
2093
|
-
*/
|
|
2094
|
-
this.Status = null;
|
|
2095
|
-
|
|
2096
|
-
/**
|
|
2097
|
-
* Release result information.
|
|
2098
|
-
* @type {string || null}
|
|
2099
|
-
*/
|
|
2100
|
-
this.Message = null;
|
|
2101
|
-
|
|
2102
|
-
/**
|
|
2103
|
-
* Release record ID.
|
|
2104
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
2105
|
-
* @type {string || null}
|
|
2106
|
-
*/
|
|
2107
|
-
this.RecordId = null;
|
|
2108
|
-
|
|
2109
|
-
/**
|
|
2110
|
-
* Change description.
|
|
2124
|
+
* Specifies the site ID.
|
|
2111
2125
|
* @type {string || null}
|
|
2112
2126
|
*/
|
|
2113
|
-
this.
|
|
2127
|
+
this.ZoneId = null;
|
|
2114
2128
|
|
|
2115
2129
|
}
|
|
2116
2130
|
|
|
@@ -2121,20 +2135,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
2121
2135
|
if (!params) {
|
|
2122
2136
|
return;
|
|
2123
2137
|
}
|
|
2124
|
-
|
|
2125
|
-
if (params.ConfigGroupVersionInfos) {
|
|
2126
|
-
this.ConfigGroupVersionInfos = new Array();
|
|
2127
|
-
for (let z in params.ConfigGroupVersionInfos) {
|
|
2128
|
-
let obj = new ConfigGroupVersionInfo();
|
|
2129
|
-
obj.deserialize(params.ConfigGroupVersionInfos[z]);
|
|
2130
|
-
this.ConfigGroupVersionInfos.push(obj);
|
|
2131
|
-
}
|
|
2132
|
-
}
|
|
2133
|
-
this.DeployTime = 'DeployTime' in params ? params.DeployTime : null;
|
|
2134
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
2135
|
-
this.Message = 'Message' in params ? params.Message : null;
|
|
2136
|
-
this.RecordId = 'RecordId' in params ? params.RecordId : null;
|
|
2137
|
-
this.Description = 'Description' in params ? params.Description : null;
|
|
2138
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
2138
2139
|
|
|
2139
2140
|
}
|
|
2140
2141
|
}
|
|
@@ -3307,6 +3308,34 @@ Note: this field may return null, which indicates a failure to obtain a valid va
|
|
|
3307
3308
|
}
|
|
3308
3309
|
}
|
|
3309
3310
|
|
|
3311
|
+
/**
|
|
3312
|
+
* ConfirmOriginACLUpdate response structure.
|
|
3313
|
+
* @class
|
|
3314
|
+
*/
|
|
3315
|
+
class ConfirmOriginACLUpdateResponse extends AbstractModel {
|
|
3316
|
+
constructor(){
|
|
3317
|
+
super();
|
|
3318
|
+
|
|
3319
|
+
/**
|
|
3320
|
+
* 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.
|
|
3321
|
+
* @type {string || null}
|
|
3322
|
+
*/
|
|
3323
|
+
this.RequestId = null;
|
|
3324
|
+
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3327
|
+
/**
|
|
3328
|
+
* @private
|
|
3329
|
+
*/
|
|
3330
|
+
deserialize(params) {
|
|
3331
|
+
if (!params) {
|
|
3332
|
+
return;
|
|
3333
|
+
}
|
|
3334
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3335
|
+
|
|
3336
|
+
}
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3310
3339
|
/**
|
|
3311
3340
|
* DescribeAliasDomains response structure.
|
|
3312
3341
|
* @class
|
|
@@ -3951,6 +3980,34 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
3951
3980
|
}
|
|
3952
3981
|
}
|
|
3953
3982
|
|
|
3983
|
+
/**
|
|
3984
|
+
* DisableOriginACL request structure.
|
|
3985
|
+
* @class
|
|
3986
|
+
*/
|
|
3987
|
+
class DisableOriginACLRequest extends AbstractModel {
|
|
3988
|
+
constructor(){
|
|
3989
|
+
super();
|
|
3990
|
+
|
|
3991
|
+
/**
|
|
3992
|
+
* Specifies the site ID.
|
|
3993
|
+
* @type {string || null}
|
|
3994
|
+
*/
|
|
3995
|
+
this.ZoneId = null;
|
|
3996
|
+
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
/**
|
|
4000
|
+
* @private
|
|
4001
|
+
*/
|
|
4002
|
+
deserialize(params) {
|
|
4003
|
+
if (!params) {
|
|
4004
|
+
return;
|
|
4005
|
+
}
|
|
4006
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
4007
|
+
|
|
4008
|
+
}
|
|
4009
|
+
}
|
|
4010
|
+
|
|
3954
4011
|
/**
|
|
3955
4012
|
* DeleteL4ProxyRules response structure.
|
|
3956
4013
|
* @class
|
|
@@ -4135,6 +4192,77 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4135
4192
|
}
|
|
4136
4193
|
}
|
|
4137
4194
|
|
|
4195
|
+
/**
|
|
4196
|
+
* The binding relationship between L7 acceleration domains/L4 proxy instances and origin IP ranges, as well as origin IP range details.
|
|
4197
|
+
* @class
|
|
4198
|
+
*/
|
|
4199
|
+
class OriginACLInfo extends AbstractModel {
|
|
4200
|
+
constructor(){
|
|
4201
|
+
super();
|
|
4202
|
+
|
|
4203
|
+
/**
|
|
4204
|
+
* The list of L7 accelerated domains that enable the origin ACLs. This field is empty when origin protection is not enabled.
|
|
4205
|
+
* @type {Array.<string> || null}
|
|
4206
|
+
*/
|
|
4207
|
+
this.L7Hosts = null;
|
|
4208
|
+
|
|
4209
|
+
/**
|
|
4210
|
+
* The list of L4 proxy instances that enable the origin ACLs. This field is empty when origin protection is not enabled.
|
|
4211
|
+
* @type {Array.<string> || null}
|
|
4212
|
+
*/
|
|
4213
|
+
this.L4ProxyIds = null;
|
|
4214
|
+
|
|
4215
|
+
/**
|
|
4216
|
+
* Currently effective origin ACLs. This field is empty when origin protection is not enabled.
|
|
4217
|
+
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
4218
|
+
* @type {CurrentOriginACL || null}
|
|
4219
|
+
*/
|
|
4220
|
+
this.CurrentOriginACL = null;
|
|
4221
|
+
|
|
4222
|
+
/**
|
|
4223
|
+
* When the origin ACLs are updated, this field will be returned with the next version's origin IP range to take effect, including a comparison with the current origin IP range. This field is empty if not updated or origin protection is not enabled.
|
|
4224
|
+
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
4225
|
+
* @type {NextOriginACL || null}
|
|
4226
|
+
*/
|
|
4227
|
+
this.NextOriginACL = null;
|
|
4228
|
+
|
|
4229
|
+
/**
|
|
4230
|
+
* Origin protection status. Vaild values:
|
|
4231
|
+
- online: in effect;
|
|
4232
|
+
- offline: disabled;
|
|
4233
|
+
- updating: configuration deployment in progress.
|
|
4234
|
+
* @type {string || null}
|
|
4235
|
+
*/
|
|
4236
|
+
this.Status = null;
|
|
4237
|
+
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4240
|
+
/**
|
|
4241
|
+
* @private
|
|
4242
|
+
*/
|
|
4243
|
+
deserialize(params) {
|
|
4244
|
+
if (!params) {
|
|
4245
|
+
return;
|
|
4246
|
+
}
|
|
4247
|
+
this.L7Hosts = 'L7Hosts' in params ? params.L7Hosts : null;
|
|
4248
|
+
this.L4ProxyIds = 'L4ProxyIds' in params ? params.L4ProxyIds : null;
|
|
4249
|
+
|
|
4250
|
+
if (params.CurrentOriginACL) {
|
|
4251
|
+
let obj = new CurrentOriginACL();
|
|
4252
|
+
obj.deserialize(params.CurrentOriginACL)
|
|
4253
|
+
this.CurrentOriginACL = obj;
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
if (params.NextOriginACL) {
|
|
4257
|
+
let obj = new NextOriginACL();
|
|
4258
|
+
obj.deserialize(params.NextOriginACL)
|
|
4259
|
+
this.NextOriginACL = obj;
|
|
4260
|
+
}
|
|
4261
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
4262
|
+
|
|
4263
|
+
}
|
|
4264
|
+
}
|
|
4265
|
+
|
|
4138
4266
|
/**
|
|
4139
4267
|
* DescribeTimingL7AnalysisData response structure.
|
|
4140
4268
|
* @class
|
|
@@ -6201,6 +6329,66 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6201
6329
|
}
|
|
6202
6330
|
}
|
|
6203
6331
|
|
|
6332
|
+
/**
|
|
6333
|
+
* Currently effective origin ACLs.
|
|
6334
|
+
* @class
|
|
6335
|
+
*/
|
|
6336
|
+
class CurrentOriginACL extends AbstractModel {
|
|
6337
|
+
constructor(){
|
|
6338
|
+
super();
|
|
6339
|
+
|
|
6340
|
+
/**
|
|
6341
|
+
* IP range details.
|
|
6342
|
+
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
6343
|
+
* @type {Addresses || null}
|
|
6344
|
+
*/
|
|
6345
|
+
this.EntireAddresses = null;
|
|
6346
|
+
|
|
6347
|
+
/**
|
|
6348
|
+
* Version number.
|
|
6349
|
+
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
6350
|
+
* @type {string || null}
|
|
6351
|
+
*/
|
|
6352
|
+
this.Version = null;
|
|
6353
|
+
|
|
6354
|
+
/**
|
|
6355
|
+
* Version effective time in UTC+8, following the date and time format of the ISO 8601 standard.
|
|
6356
|
+
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
6357
|
+
* @type {string || null}
|
|
6358
|
+
*/
|
|
6359
|
+
this.ActiveTime = null;
|
|
6360
|
+
|
|
6361
|
+
/**
|
|
6362
|
+
* This parameter is used to record whether "I've upgraded to the lastest verison" is completed before the origin ACLs version is effective. valid values:.
|
|
6363
|
+
- true: specifies that the version is effective and the update to the latest version is confirmed.
|
|
6364
|
+
- false: when the version takes effect, the confirmation of updating to the latest origin ACLs are not completed. The IP range is forcibly updated to the latest version in the backend. When this parameter returns false, please confirm in time whether your origin server firewall configuration has been updated to the latest version to avoid origin-pull failure.
|
|
6365
|
+
Note: This field may return null, which indicates a failure to obtain a valid value.
|
|
6366
|
+
* @type {string || null}
|
|
6367
|
+
*/
|
|
6368
|
+
this.IsPlaned = null;
|
|
6369
|
+
|
|
6370
|
+
}
|
|
6371
|
+
|
|
6372
|
+
/**
|
|
6373
|
+
* @private
|
|
6374
|
+
*/
|
|
6375
|
+
deserialize(params) {
|
|
6376
|
+
if (!params) {
|
|
6377
|
+
return;
|
|
6378
|
+
}
|
|
6379
|
+
|
|
6380
|
+
if (params.EntireAddresses) {
|
|
6381
|
+
let obj = new Addresses();
|
|
6382
|
+
obj.deserialize(params.EntireAddresses)
|
|
6383
|
+
this.EntireAddresses = obj;
|
|
6384
|
+
}
|
|
6385
|
+
this.Version = 'Version' in params ? params.Version : null;
|
|
6386
|
+
this.ActiveTime = 'ActiveTime' in params ? params.ActiveTime : null;
|
|
6387
|
+
this.IsPlaned = 'IsPlaned' in params ? params.IsPlaned : null;
|
|
6388
|
+
|
|
6389
|
+
}
|
|
6390
|
+
}
|
|
6391
|
+
|
|
6204
6392
|
/**
|
|
6205
6393
|
* Web security configuration.
|
|
6206
6394
|
* @class
|
|
@@ -6362,62 +6550,24 @@ Note: This field may return null, which indicates a failure to obtain a valid va
|
|
|
6362
6550
|
}
|
|
6363
6551
|
|
|
6364
6552
|
/**
|
|
6365
|
-
*
|
|
6553
|
+
* CreateSecurityIPGroup request structure.
|
|
6366
6554
|
* @class
|
|
6367
6555
|
*/
|
|
6368
|
-
class
|
|
6556
|
+
class CreateSecurityIPGroupRequest extends AbstractModel {
|
|
6369
6557
|
constructor(){
|
|
6370
6558
|
super();
|
|
6371
6559
|
|
|
6372
6560
|
/**
|
|
6373
|
-
*
|
|
6374
|
-
* @type {string || null}
|
|
6375
|
-
*/
|
|
6376
|
-
this.ProxyId = null;
|
|
6377
|
-
|
|
6378
|
-
/**
|
|
6379
|
-
* Log query area. Valid values:
|
|
6380
|
-
<li>`mainland`: Chinese mainland;</li>
|
|
6381
|
-
<li>`overseas`: Global (outside the Chinese mainland). </li>
|
|
6382
|
-
* @type {string || null}
|
|
6383
|
-
*/
|
|
6384
|
-
this.Area = null;
|
|
6385
|
-
|
|
6386
|
-
/**
|
|
6387
|
-
* Log packet name.
|
|
6388
|
-
* @type {string || null}
|
|
6389
|
-
*/
|
|
6390
|
-
this.LogPacketName = null;
|
|
6391
|
-
|
|
6392
|
-
/**
|
|
6393
|
-
* Log download address.
|
|
6394
|
-
* @type {string || null}
|
|
6395
|
-
*/
|
|
6396
|
-
this.Url = null;
|
|
6397
|
-
|
|
6398
|
-
/**
|
|
6399
|
-
* (Disused) Log packaging time.
|
|
6400
|
-
* @type {number || null}
|
|
6401
|
-
*/
|
|
6402
|
-
this.LogTime = null;
|
|
6403
|
-
|
|
6404
|
-
/**
|
|
6405
|
-
* Start time of log packaging.
|
|
6406
|
-
* @type {string || null}
|
|
6407
|
-
*/
|
|
6408
|
-
this.LogStartTime = null;
|
|
6409
|
-
|
|
6410
|
-
/**
|
|
6411
|
-
* End time of the log package.
|
|
6561
|
+
* Site ID.
|
|
6412
6562
|
* @type {string || null}
|
|
6413
6563
|
*/
|
|
6414
|
-
this.
|
|
6564
|
+
this.ZoneId = null;
|
|
6415
6565
|
|
|
6416
6566
|
/**
|
|
6417
|
-
*
|
|
6418
|
-
* @type {
|
|
6567
|
+
* IP group information.
|
|
6568
|
+
* @type {IPGroup || null}
|
|
6419
6569
|
*/
|
|
6420
|
-
this.
|
|
6570
|
+
this.IPGroup = null;
|
|
6421
6571
|
|
|
6422
6572
|
}
|
|
6423
6573
|
|
|
@@ -6428,14 +6578,13 @@ class L4OfflineLog extends AbstractModel {
|
|
|
6428
6578
|
if (!params) {
|
|
6429
6579
|
return;
|
|
6430
6580
|
}
|
|
6431
|
-
this.
|
|
6432
|
-
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
this.Size = 'Size' in params ? params.Size : null;
|
|
6581
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
6582
|
+
|
|
6583
|
+
if (params.IPGroup) {
|
|
6584
|
+
let obj = new IPGroup();
|
|
6585
|
+
obj.deserialize(params.IPGroup)
|
|
6586
|
+
this.IPGroup = obj;
|
|
6587
|
+
}
|
|
6439
6588
|
|
|
6440
6589
|
}
|
|
6441
6590
|
}
|
|
@@ -6694,45 +6843,52 @@ class SmartRoutingParameters extends AbstractModel {
|
|
|
6694
6843
|
}
|
|
6695
6844
|
|
|
6696
6845
|
/**
|
|
6697
|
-
*
|
|
6846
|
+
* DisableOriginACL response structure.
|
|
6698
6847
|
* @class
|
|
6699
6848
|
*/
|
|
6700
|
-
class
|
|
6849
|
+
class DisableOriginACLResponse extends AbstractModel {
|
|
6701
6850
|
constructor(){
|
|
6702
6851
|
super();
|
|
6703
6852
|
|
|
6704
6853
|
/**
|
|
6705
|
-
* The
|
|
6854
|
+
* 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.
|
|
6706
6855
|
* @type {string || null}
|
|
6707
6856
|
*/
|
|
6708
|
-
this.
|
|
6857
|
+
this.RequestId = null;
|
|
6709
6858
|
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6859
|
+
}
|
|
6860
|
+
|
|
6861
|
+
/**
|
|
6862
|
+
* @private
|
|
6863
|
+
*/
|
|
6864
|
+
deserialize(params) {
|
|
6865
|
+
if (!params) {
|
|
6866
|
+
return;
|
|
6867
|
+
}
|
|
6868
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6869
|
+
|
|
6870
|
+
}
|
|
6871
|
+
}
|
|
6872
|
+
|
|
6873
|
+
/**
|
|
6874
|
+
* DescribeOriginACL response structure.
|
|
6875
|
+
* @class
|
|
6876
|
+
*/
|
|
6877
|
+
class DescribeOriginACLResponse extends AbstractModel {
|
|
6878
|
+
constructor(){
|
|
6879
|
+
super();
|
|
6715
6880
|
|
|
6716
6881
|
/**
|
|
6717
|
-
*
|
|
6718
|
-
* @type {
|
|
6882
|
+
* Describes the binding relationship between the l7 acceleration domain/l4 proxy instance and the origin server IP range.
|
|
6883
|
+
* @type {OriginACLInfo || null}
|
|
6719
6884
|
*/
|
|
6720
|
-
this.
|
|
6885
|
+
this.OriginACLInfo = null;
|
|
6721
6886
|
|
|
6722
6887
|
/**
|
|
6723
|
-
*
|
|
6724
|
-
<li>`none`: Off</li>
|
|
6725
|
-
<li>`hosting`: Managed SSL certificate</li>
|
|
6726
|
-
<li>`apply`: Free certificate</li>The original configuration will apply if this field is not specified.
|
|
6888
|
+
* 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.
|
|
6727
6889
|
* @type {string || null}
|
|
6728
6890
|
*/
|
|
6729
|
-
this.
|
|
6730
|
-
|
|
6731
|
-
/**
|
|
6732
|
-
* The certificate ID. This field is required when `CertType=hosting`.
|
|
6733
|
-
* @type {Array.<string> || null}
|
|
6734
|
-
*/
|
|
6735
|
-
this.CertId = null;
|
|
6891
|
+
this.RequestId = null;
|
|
6736
6892
|
|
|
6737
6893
|
}
|
|
6738
6894
|
|
|
@@ -6743,11 +6899,13 @@ class ModifyAliasDomainRequest extends AbstractModel {
|
|
|
6743
6899
|
if (!params) {
|
|
6744
6900
|
return;
|
|
6745
6901
|
}
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
|
|
6902
|
+
|
|
6903
|
+
if (params.OriginACLInfo) {
|
|
6904
|
+
let obj = new OriginACLInfo();
|
|
6905
|
+
obj.deserialize(params.OriginACLInfo)
|
|
6906
|
+
this.OriginACLInfo = obj;
|
|
6907
|
+
}
|
|
6908
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6751
6909
|
|
|
6752
6910
|
}
|
|
6753
6911
|
}
|
|
@@ -6855,24 +7013,62 @@ class PrivateParameter extends AbstractModel {
|
|
|
6855
7013
|
}
|
|
6856
7014
|
|
|
6857
7015
|
/**
|
|
6858
|
-
*
|
|
7016
|
+
* The L7 log details
|
|
6859
7017
|
* @class
|
|
6860
7018
|
*/
|
|
6861
|
-
class
|
|
7019
|
+
class L4OfflineLog extends AbstractModel {
|
|
6862
7020
|
constructor(){
|
|
6863
7021
|
super();
|
|
6864
7022
|
|
|
6865
7023
|
/**
|
|
6866
|
-
*
|
|
7024
|
+
* L4 proxy instance ID.
|
|
6867
7025
|
* @type {string || null}
|
|
6868
7026
|
*/
|
|
6869
|
-
this.
|
|
7027
|
+
this.ProxyId = null;
|
|
6870
7028
|
|
|
6871
7029
|
/**
|
|
6872
|
-
*
|
|
6873
|
-
|
|
7030
|
+
* Log query area. Valid values:
|
|
7031
|
+
<li>`mainland`: Chinese mainland;</li>
|
|
7032
|
+
<li>`overseas`: Global (outside the Chinese mainland). </li>
|
|
7033
|
+
* @type {string || null}
|
|
6874
7034
|
*/
|
|
6875
|
-
this.
|
|
7035
|
+
this.Area = null;
|
|
7036
|
+
|
|
7037
|
+
/**
|
|
7038
|
+
* Log packet name.
|
|
7039
|
+
* @type {string || null}
|
|
7040
|
+
*/
|
|
7041
|
+
this.LogPacketName = null;
|
|
7042
|
+
|
|
7043
|
+
/**
|
|
7044
|
+
* Log download address.
|
|
7045
|
+
* @type {string || null}
|
|
7046
|
+
*/
|
|
7047
|
+
this.Url = null;
|
|
7048
|
+
|
|
7049
|
+
/**
|
|
7050
|
+
* (Disused) Log packaging time.
|
|
7051
|
+
* @type {number || null}
|
|
7052
|
+
*/
|
|
7053
|
+
this.LogTime = null;
|
|
7054
|
+
|
|
7055
|
+
/**
|
|
7056
|
+
* Start time of log packaging.
|
|
7057
|
+
* @type {string || null}
|
|
7058
|
+
*/
|
|
7059
|
+
this.LogStartTime = null;
|
|
7060
|
+
|
|
7061
|
+
/**
|
|
7062
|
+
* End time of the log package.
|
|
7063
|
+
* @type {string || null}
|
|
7064
|
+
*/
|
|
7065
|
+
this.LogEndTime = null;
|
|
7066
|
+
|
|
7067
|
+
/**
|
|
7068
|
+
* Log size (in bytes).
|
|
7069
|
+
* @type {number || null}
|
|
7070
|
+
*/
|
|
7071
|
+
this.Size = null;
|
|
6876
7072
|
|
|
6877
7073
|
}
|
|
6878
7074
|
|
|
@@ -6883,13 +7079,14 @@ class CreateSecurityIPGroupRequest extends AbstractModel {
|
|
|
6883
7079
|
if (!params) {
|
|
6884
7080
|
return;
|
|
6885
7081
|
}
|
|
6886
|
-
this.
|
|
6887
|
-
|
|
6888
|
-
|
|
6889
|
-
|
|
6890
|
-
|
|
6891
|
-
|
|
6892
|
-
|
|
7082
|
+
this.ProxyId = 'ProxyId' in params ? params.ProxyId : null;
|
|
7083
|
+
this.Area = 'Area' in params ? params.Area : null;
|
|
7084
|
+
this.LogPacketName = 'LogPacketName' in params ? params.LogPacketName : null;
|
|
7085
|
+
this.Url = 'Url' in params ? params.Url : null;
|
|
7086
|
+
this.LogTime = 'LogTime' in params ? params.LogTime : null;
|
|
7087
|
+
this.LogStartTime = 'LogStartTime' in params ? params.LogStartTime : null;
|
|
7088
|
+
this.LogEndTime = 'LogEndTime' in params ? params.LogEndTime : null;
|
|
7089
|
+
this.Size = 'Size' in params ? params.Size : null;
|
|
6893
7090
|
|
|
6894
7091
|
}
|
|
6895
7092
|
}
|
|
@@ -8592,6 +8789,89 @@ class ManagedRuleDetail extends AbstractModel {
|
|
|
8592
8789
|
}
|
|
8593
8790
|
}
|
|
8594
8791
|
|
|
8792
|
+
/**
|
|
8793
|
+
* When origin ACLs are updated, this field will be returned with the next version of the IP range to take effect, including a comparison with the currently effective IP range.
|
|
8794
|
+
* @class
|
|
8795
|
+
*/
|
|
8796
|
+
class NextOriginACL extends AbstractModel {
|
|
8797
|
+
constructor(){
|
|
8798
|
+
super();
|
|
8799
|
+
|
|
8800
|
+
/**
|
|
8801
|
+
* Version number.
|
|
8802
|
+
* @type {string || null}
|
|
8803
|
+
*/
|
|
8804
|
+
this.Version = null;
|
|
8805
|
+
|
|
8806
|
+
/**
|
|
8807
|
+
* Version effective time, which adopts UTC+8 and follows the date and time format of the ISO 8601 standard.
|
|
8808
|
+
* @type {string || null}
|
|
8809
|
+
*/
|
|
8810
|
+
this.PlannedActiveTime = null;
|
|
8811
|
+
|
|
8812
|
+
/**
|
|
8813
|
+
* IP range details.
|
|
8814
|
+
* @type {Addresses || null}
|
|
8815
|
+
*/
|
|
8816
|
+
this.EntireAddresses = null;
|
|
8817
|
+
|
|
8818
|
+
/**
|
|
8819
|
+
* The latest origin IP range newly-added compared with the origin IP range in CurrentOrginACL.
|
|
8820
|
+
* @type {Addresses || null}
|
|
8821
|
+
*/
|
|
8822
|
+
this.AddedAddresses = null;
|
|
8823
|
+
|
|
8824
|
+
/**
|
|
8825
|
+
* The latest origin IP range deleted compared with the origin IP range in CurrentOrginACL.
|
|
8826
|
+
* @type {Addresses || null}
|
|
8827
|
+
*/
|
|
8828
|
+
this.RemovedAddresses = null;
|
|
8829
|
+
|
|
8830
|
+
/**
|
|
8831
|
+
* The latest origin IP range is unchanged compared with the origin IP range in CurrentOrginACL.
|
|
8832
|
+
* @type {Addresses || null}
|
|
8833
|
+
*/
|
|
8834
|
+
this.NoChangeAddresses = null;
|
|
8835
|
+
|
|
8836
|
+
}
|
|
8837
|
+
|
|
8838
|
+
/**
|
|
8839
|
+
* @private
|
|
8840
|
+
*/
|
|
8841
|
+
deserialize(params) {
|
|
8842
|
+
if (!params) {
|
|
8843
|
+
return;
|
|
8844
|
+
}
|
|
8845
|
+
this.Version = 'Version' in params ? params.Version : null;
|
|
8846
|
+
this.PlannedActiveTime = 'PlannedActiveTime' in params ? params.PlannedActiveTime : null;
|
|
8847
|
+
|
|
8848
|
+
if (params.EntireAddresses) {
|
|
8849
|
+
let obj = new Addresses();
|
|
8850
|
+
obj.deserialize(params.EntireAddresses)
|
|
8851
|
+
this.EntireAddresses = obj;
|
|
8852
|
+
}
|
|
8853
|
+
|
|
8854
|
+
if (params.AddedAddresses) {
|
|
8855
|
+
let obj = new Addresses();
|
|
8856
|
+
obj.deserialize(params.AddedAddresses)
|
|
8857
|
+
this.AddedAddresses = obj;
|
|
8858
|
+
}
|
|
8859
|
+
|
|
8860
|
+
if (params.RemovedAddresses) {
|
|
8861
|
+
let obj = new Addresses();
|
|
8862
|
+
obj.deserialize(params.RemovedAddresses)
|
|
8863
|
+
this.RemovedAddresses = obj;
|
|
8864
|
+
}
|
|
8865
|
+
|
|
8866
|
+
if (params.NoChangeAddresses) {
|
|
8867
|
+
let obj = new Addresses();
|
|
8868
|
+
obj.deserialize(params.NoChangeAddresses)
|
|
8869
|
+
this.NoChangeAddresses = obj;
|
|
8870
|
+
}
|
|
8871
|
+
|
|
8872
|
+
}
|
|
8873
|
+
}
|
|
8874
|
+
|
|
8595
8875
|
/**
|
|
8596
8876
|
* DescribeZoneSetting request structure.
|
|
8597
8877
|
* @class
|
|
@@ -12263,6 +12543,34 @@ class CreateConfigGroupVersionResponse extends AbstractModel {
|
|
|
12263
12543
|
}
|
|
12264
12544
|
}
|
|
12265
12545
|
|
|
12546
|
+
/**
|
|
12547
|
+
* ConfirmOriginACLUpdate request structure.
|
|
12548
|
+
* @class
|
|
12549
|
+
*/
|
|
12550
|
+
class ConfirmOriginACLUpdateRequest extends AbstractModel {
|
|
12551
|
+
constructor(){
|
|
12552
|
+
super();
|
|
12553
|
+
|
|
12554
|
+
/**
|
|
12555
|
+
* Specifies the site ID.
|
|
12556
|
+
* @type {string || null}
|
|
12557
|
+
*/
|
|
12558
|
+
this.ZoneId = null;
|
|
12559
|
+
|
|
12560
|
+
}
|
|
12561
|
+
|
|
12562
|
+
/**
|
|
12563
|
+
* @private
|
|
12564
|
+
*/
|
|
12565
|
+
deserialize(params) {
|
|
12566
|
+
if (!params) {
|
|
12567
|
+
return;
|
|
12568
|
+
}
|
|
12569
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
12570
|
+
|
|
12571
|
+
}
|
|
12572
|
+
}
|
|
12573
|
+
|
|
12266
12574
|
/**
|
|
12267
12575
|
* DownloadL7Logs request structure.
|
|
12268
12576
|
* @class
|
|
@@ -13473,31 +13781,106 @@ Default: `source_to_eo`.
|
|
|
13473
13781
|
if (!params) {
|
|
13474
13782
|
return;
|
|
13475
13783
|
}
|
|
13476
|
-
this.Threshold = 'Threshold' in params ? params.Threshold : null;
|
|
13477
|
-
this.Period = 'Period' in params ? params.Period : null;
|
|
13478
|
-
this.RuleName = 'RuleName' in params ? params.RuleName : null;
|
|
13479
|
-
this.Action = 'Action' in params ? params.Action : null;
|
|
13480
|
-
this.PunishTime = 'PunishTime' in params ? params.PunishTime : null;
|
|
13481
|
-
this.PunishTimeUnit = 'PunishTimeUnit' in params ? params.PunishTimeUnit : null;
|
|
13482
|
-
this.RuleStatus = 'RuleStatus' in params ? params.RuleStatus : null;
|
|
13784
|
+
this.Threshold = 'Threshold' in params ? params.Threshold : null;
|
|
13785
|
+
this.Period = 'Period' in params ? params.Period : null;
|
|
13786
|
+
this.RuleName = 'RuleName' in params ? params.RuleName : null;
|
|
13787
|
+
this.Action = 'Action' in params ? params.Action : null;
|
|
13788
|
+
this.PunishTime = 'PunishTime' in params ? params.PunishTime : null;
|
|
13789
|
+
this.PunishTimeUnit = 'PunishTimeUnit' in params ? params.PunishTimeUnit : null;
|
|
13790
|
+
this.RuleStatus = 'RuleStatus' in params ? params.RuleStatus : null;
|
|
13791
|
+
|
|
13792
|
+
if (params.AclConditions) {
|
|
13793
|
+
this.AclConditions = new Array();
|
|
13794
|
+
for (let z in params.AclConditions) {
|
|
13795
|
+
let obj = new AclCondition();
|
|
13796
|
+
obj.deserialize(params.AclConditions[z]);
|
|
13797
|
+
this.AclConditions.push(obj);
|
|
13798
|
+
}
|
|
13799
|
+
}
|
|
13800
|
+
this.RulePriority = 'RulePriority' in params ? params.RulePriority : null;
|
|
13801
|
+
this.RuleID = 'RuleID' in params ? params.RuleID : null;
|
|
13802
|
+
this.FreqFields = 'FreqFields' in params ? params.FreqFields : null;
|
|
13803
|
+
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
13804
|
+
this.FreqScope = 'FreqScope' in params ? params.FreqScope : null;
|
|
13805
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
13806
|
+
this.CustomResponseId = 'CustomResponseId' in params ? params.CustomResponseId : null;
|
|
13807
|
+
this.ResponseCode = 'ResponseCode' in params ? params.ResponseCode : null;
|
|
13808
|
+
this.RedirectUrl = 'RedirectUrl' in params ? params.RedirectUrl : null;
|
|
13809
|
+
|
|
13810
|
+
}
|
|
13811
|
+
}
|
|
13812
|
+
|
|
13813
|
+
/**
|
|
13814
|
+
* Version release record details for the configuration group.
|
|
13815
|
+
* @class
|
|
13816
|
+
*/
|
|
13817
|
+
class DeployRecord extends AbstractModel {
|
|
13818
|
+
constructor(){
|
|
13819
|
+
super();
|
|
13820
|
+
|
|
13821
|
+
/**
|
|
13822
|
+
* Details about the released version.
|
|
13823
|
+
* @type {Array.<ConfigGroupVersionInfo> || null}
|
|
13824
|
+
*/
|
|
13825
|
+
this.ConfigGroupVersionInfos = null;
|
|
13826
|
+
|
|
13827
|
+
/**
|
|
13828
|
+
* Release time. The time format follows the ISO 8601 standard and is represented in Coordinated Universal Time (UTC).
|
|
13829
|
+
* @type {string || null}
|
|
13830
|
+
*/
|
|
13831
|
+
this.DeployTime = null;
|
|
13832
|
+
|
|
13833
|
+
/**
|
|
13834
|
+
* Release status. Valid values:
|
|
13835
|
+
<li>deploying: Being released.</li>
|
|
13836
|
+
<li>failure: Release failed.</li>
|
|
13837
|
+
<li>success: Released successfully. </li>
|
|
13838
|
+
* @type {string || null}
|
|
13839
|
+
*/
|
|
13840
|
+
this.Status = null;
|
|
13841
|
+
|
|
13842
|
+
/**
|
|
13843
|
+
* Release result information.
|
|
13844
|
+
* @type {string || null}
|
|
13845
|
+
*/
|
|
13846
|
+
this.Message = null;
|
|
13847
|
+
|
|
13848
|
+
/**
|
|
13849
|
+
* Release record ID.
|
|
13850
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
13851
|
+
* @type {string || null}
|
|
13852
|
+
*/
|
|
13853
|
+
this.RecordId = null;
|
|
13854
|
+
|
|
13855
|
+
/**
|
|
13856
|
+
* Change description.
|
|
13857
|
+
* @type {string || null}
|
|
13858
|
+
*/
|
|
13859
|
+
this.Description = null;
|
|
13860
|
+
|
|
13861
|
+
}
|
|
13862
|
+
|
|
13863
|
+
/**
|
|
13864
|
+
* @private
|
|
13865
|
+
*/
|
|
13866
|
+
deserialize(params) {
|
|
13867
|
+
if (!params) {
|
|
13868
|
+
return;
|
|
13869
|
+
}
|
|
13483
13870
|
|
|
13484
|
-
if (params.
|
|
13485
|
-
this.
|
|
13486
|
-
for (let z in params.
|
|
13487
|
-
let obj = new
|
|
13488
|
-
obj.deserialize(params.
|
|
13489
|
-
this.
|
|
13871
|
+
if (params.ConfigGroupVersionInfos) {
|
|
13872
|
+
this.ConfigGroupVersionInfos = new Array();
|
|
13873
|
+
for (let z in params.ConfigGroupVersionInfos) {
|
|
13874
|
+
let obj = new ConfigGroupVersionInfo();
|
|
13875
|
+
obj.deserialize(params.ConfigGroupVersionInfos[z]);
|
|
13876
|
+
this.ConfigGroupVersionInfos.push(obj);
|
|
13490
13877
|
}
|
|
13491
13878
|
}
|
|
13492
|
-
this.
|
|
13493
|
-
this.
|
|
13494
|
-
this.
|
|
13495
|
-
this.
|
|
13496
|
-
this.
|
|
13497
|
-
this.Name = 'Name' in params ? params.Name : null;
|
|
13498
|
-
this.CustomResponseId = 'CustomResponseId' in params ? params.CustomResponseId : null;
|
|
13499
|
-
this.ResponseCode = 'ResponseCode' in params ? params.ResponseCode : null;
|
|
13500
|
-
this.RedirectUrl = 'RedirectUrl' in params ? params.RedirectUrl : null;
|
|
13879
|
+
this.DeployTime = 'DeployTime' in params ? params.DeployTime : null;
|
|
13880
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
13881
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
13882
|
+
this.RecordId = 'RecordId' in params ? params.RecordId : null;
|
|
13883
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
13501
13884
|
|
|
13502
13885
|
}
|
|
13503
13886
|
}
|
|
@@ -16023,6 +16406,34 @@ class CustomEndpoint extends AbstractModel {
|
|
|
16023
16406
|
}
|
|
16024
16407
|
}
|
|
16025
16408
|
|
|
16409
|
+
/**
|
|
16410
|
+
* ModifyOriginACL response structure.
|
|
16411
|
+
* @class
|
|
16412
|
+
*/
|
|
16413
|
+
class ModifyOriginACLResponse extends AbstractModel {
|
|
16414
|
+
constructor(){
|
|
16415
|
+
super();
|
|
16416
|
+
|
|
16417
|
+
/**
|
|
16418
|
+
* 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.
|
|
16419
|
+
* @type {string || null}
|
|
16420
|
+
*/
|
|
16421
|
+
this.RequestId = null;
|
|
16422
|
+
|
|
16423
|
+
}
|
|
16424
|
+
|
|
16425
|
+
/**
|
|
16426
|
+
* @private
|
|
16427
|
+
*/
|
|
16428
|
+
deserialize(params) {
|
|
16429
|
+
if (!params) {
|
|
16430
|
+
return;
|
|
16431
|
+
}
|
|
16432
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
16433
|
+
|
|
16434
|
+
}
|
|
16435
|
+
}
|
|
16436
|
+
|
|
16026
16437
|
/**
|
|
16027
16438
|
* VerifyOwnership request structure.
|
|
16028
16439
|
* @class
|
|
@@ -16981,6 +17392,65 @@ Note: this field may return null, which indicates a failure to obtain a valid va
|
|
|
16981
17392
|
}
|
|
16982
17393
|
}
|
|
16983
17394
|
|
|
17395
|
+
/**
|
|
17396
|
+
* ModifyAliasDomain request structure.
|
|
17397
|
+
* @class
|
|
17398
|
+
*/
|
|
17399
|
+
class ModifyAliasDomainRequest extends AbstractModel {
|
|
17400
|
+
constructor(){
|
|
17401
|
+
super();
|
|
17402
|
+
|
|
17403
|
+
/**
|
|
17404
|
+
* The site ID.
|
|
17405
|
+
* @type {string || null}
|
|
17406
|
+
*/
|
|
17407
|
+
this.ZoneId = null;
|
|
17408
|
+
|
|
17409
|
+
/**
|
|
17410
|
+
* The alias domain name.
|
|
17411
|
+
* @type {string || null}
|
|
17412
|
+
*/
|
|
17413
|
+
this.AliasName = null;
|
|
17414
|
+
|
|
17415
|
+
/**
|
|
17416
|
+
* The target domain name.
|
|
17417
|
+
* @type {string || null}
|
|
17418
|
+
*/
|
|
17419
|
+
this.TargetName = null;
|
|
17420
|
+
|
|
17421
|
+
/**
|
|
17422
|
+
* Certificate configuration. Values:
|
|
17423
|
+
<li>`none`: Off</li>
|
|
17424
|
+
<li>`hosting`: Managed SSL certificate</li>
|
|
17425
|
+
<li>`apply`: Free certificate</li>The original configuration will apply if this field is not specified.
|
|
17426
|
+
* @type {string || null}
|
|
17427
|
+
*/
|
|
17428
|
+
this.CertType = null;
|
|
17429
|
+
|
|
17430
|
+
/**
|
|
17431
|
+
* The certificate ID. This field is required when `CertType=hosting`.
|
|
17432
|
+
* @type {Array.<string> || null}
|
|
17433
|
+
*/
|
|
17434
|
+
this.CertId = null;
|
|
17435
|
+
|
|
17436
|
+
}
|
|
17437
|
+
|
|
17438
|
+
/**
|
|
17439
|
+
* @private
|
|
17440
|
+
*/
|
|
17441
|
+
deserialize(params) {
|
|
17442
|
+
if (!params) {
|
|
17443
|
+
return;
|
|
17444
|
+
}
|
|
17445
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
17446
|
+
this.AliasName = 'AliasName' in params ? params.AliasName : null;
|
|
17447
|
+
this.TargetName = 'TargetName' in params ? params.TargetName : null;
|
|
17448
|
+
this.CertType = 'CertType' in params ? params.CertType : null;
|
|
17449
|
+
this.CertId = 'CertId' in params ? params.CertId : null;
|
|
17450
|
+
|
|
17451
|
+
}
|
|
17452
|
+
}
|
|
17453
|
+
|
|
16984
17454
|
/**
|
|
16985
17455
|
* Details of the origin.
|
|
16986
17456
|
* @class
|
|
@@ -19170,6 +19640,49 @@ class OriginGroupHealthStatusDetail extends AbstractModel {
|
|
|
19170
19640
|
}
|
|
19171
19641
|
}
|
|
19172
19642
|
|
|
19643
|
+
/**
|
|
19644
|
+
* ModifyOriginACL request structure.
|
|
19645
|
+
* @class
|
|
19646
|
+
*/
|
|
19647
|
+
class ModifyOriginACLRequest extends AbstractModel {
|
|
19648
|
+
constructor(){
|
|
19649
|
+
super();
|
|
19650
|
+
|
|
19651
|
+
/**
|
|
19652
|
+
* Specifies the site ID.
|
|
19653
|
+
* @type {string || null}
|
|
19654
|
+
*/
|
|
19655
|
+
this.ZoneId = null;
|
|
19656
|
+
|
|
19657
|
+
/**
|
|
19658
|
+
* Specifies the instance that needs to configurate origin ACLs.
|
|
19659
|
+
* @type {Array.<OriginACLEntity> || null}
|
|
19660
|
+
*/
|
|
19661
|
+
this.OriginACLEntities = null;
|
|
19662
|
+
|
|
19663
|
+
}
|
|
19664
|
+
|
|
19665
|
+
/**
|
|
19666
|
+
* @private
|
|
19667
|
+
*/
|
|
19668
|
+
deserialize(params) {
|
|
19669
|
+
if (!params) {
|
|
19670
|
+
return;
|
|
19671
|
+
}
|
|
19672
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
19673
|
+
|
|
19674
|
+
if (params.OriginACLEntities) {
|
|
19675
|
+
this.OriginACLEntities = new Array();
|
|
19676
|
+
for (let z in params.OriginACLEntities) {
|
|
19677
|
+
let obj = new OriginACLEntity();
|
|
19678
|
+
obj.deserialize(params.OriginACLEntities[z]);
|
|
19679
|
+
this.OriginACLEntities.push(obj);
|
|
19680
|
+
}
|
|
19681
|
+
}
|
|
19682
|
+
|
|
19683
|
+
}
|
|
19684
|
+
}
|
|
19685
|
+
|
|
19173
19686
|
/**
|
|
19174
19687
|
* The configuration to detect slow attacks based on the transfer period the first 8 KB of requests
|
|
19175
19688
|
* @class
|
|
@@ -23031,6 +23544,34 @@ class UpstreamHttp2 extends AbstractModel {
|
|
|
23031
23544
|
}
|
|
23032
23545
|
}
|
|
23033
23546
|
|
|
23547
|
+
/**
|
|
23548
|
+
* EnableOriginACL response structure.
|
|
23549
|
+
* @class
|
|
23550
|
+
*/
|
|
23551
|
+
class EnableOriginACLResponse extends AbstractModel {
|
|
23552
|
+
constructor(){
|
|
23553
|
+
super();
|
|
23554
|
+
|
|
23555
|
+
/**
|
|
23556
|
+
* 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.
|
|
23557
|
+
* @type {string || null}
|
|
23558
|
+
*/
|
|
23559
|
+
this.RequestId = null;
|
|
23560
|
+
|
|
23561
|
+
}
|
|
23562
|
+
|
|
23563
|
+
/**
|
|
23564
|
+
* @private
|
|
23565
|
+
*/
|
|
23566
|
+
deserialize(params) {
|
|
23567
|
+
if (!params) {
|
|
23568
|
+
return;
|
|
23569
|
+
}
|
|
23570
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
23571
|
+
|
|
23572
|
+
}
|
|
23573
|
+
}
|
|
23574
|
+
|
|
23034
23575
|
/**
|
|
23035
23576
|
* DeleteAliasDomain response structure.
|
|
23036
23577
|
* @class
|
|
@@ -23172,6 +23713,69 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
23172
23713
|
}
|
|
23173
23714
|
}
|
|
23174
23715
|
|
|
23716
|
+
/**
|
|
23717
|
+
* EnableOriginACL request structure.
|
|
23718
|
+
* @class
|
|
23719
|
+
*/
|
|
23720
|
+
class EnableOriginACLRequest extends AbstractModel {
|
|
23721
|
+
constructor(){
|
|
23722
|
+
super();
|
|
23723
|
+
|
|
23724
|
+
/**
|
|
23725
|
+
* Specifies the site ID.
|
|
23726
|
+
* @type {string || null}
|
|
23727
|
+
*/
|
|
23728
|
+
this.ZoneId = null;
|
|
23729
|
+
|
|
23730
|
+
/**
|
|
23731
|
+
* The mode of configurating origin ACLs for L7 acceleration domains.
|
|
23732
|
+
- all: configurate origin ACLs for all L7 acceleration domains under the site.
|
|
23733
|
+
- specific: configurate origin ACLs for designated L7 acceleration domains under the site.
|
|
23734
|
+
When the parameter is empty, it defaults to specific.
|
|
23735
|
+
|
|
23736
|
+
* @type {string || null}
|
|
23737
|
+
*/
|
|
23738
|
+
this.L7EnableMode = null;
|
|
23739
|
+
|
|
23740
|
+
/**
|
|
23741
|
+
* The list of L7 acceleration domains that require enabling the origin ACLs. This list must be empty when the request parameter L7EnableMode is set to 'all'. A maximum of 200 domains are supported at a time.
|
|
23742
|
+
* @type {Array.<string> || null}
|
|
23743
|
+
*/
|
|
23744
|
+
this.L7Hosts = null;
|
|
23745
|
+
|
|
23746
|
+
/**
|
|
23747
|
+
* The mode of configurating origin ACLs for L4 proxy Instances.
|
|
23748
|
+
- all: configurate origin ACLs for all L4 proxy Instances under the site.
|
|
23749
|
+
- specific: configurate origin ACLs for designated L4 proxy Instances under the site.
|
|
23750
|
+
When the parameter is empty, it defaults to specific.
|
|
23751
|
+
* @type {string || null}
|
|
23752
|
+
*/
|
|
23753
|
+
this.L4EnableMode = null;
|
|
23754
|
+
|
|
23755
|
+
/**
|
|
23756
|
+
* The list of L4 proxy Instances that require enabling origin ACLs. This list must be empty when the request parameter L4EnableMode is set to 'all'. A maximum of 100 instances are supported at a time.
|
|
23757
|
+
* @type {Array.<string> || null}
|
|
23758
|
+
*/
|
|
23759
|
+
this.L4ProxyIds = null;
|
|
23760
|
+
|
|
23761
|
+
}
|
|
23762
|
+
|
|
23763
|
+
/**
|
|
23764
|
+
* @private
|
|
23765
|
+
*/
|
|
23766
|
+
deserialize(params) {
|
|
23767
|
+
if (!params) {
|
|
23768
|
+
return;
|
|
23769
|
+
}
|
|
23770
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
23771
|
+
this.L7EnableMode = 'L7EnableMode' in params ? params.L7EnableMode : null;
|
|
23772
|
+
this.L7Hosts = 'L7Hosts' in params ? params.L7Hosts : null;
|
|
23773
|
+
this.L4EnableMode = 'L4EnableMode' in params ? params.L4EnableMode : null;
|
|
23774
|
+
this.L4ProxyIds = 'L4ProxyIds' in params ? params.L4ProxyIds : null;
|
|
23775
|
+
|
|
23776
|
+
}
|
|
23777
|
+
}
|
|
23778
|
+
|
|
23175
23779
|
/**
|
|
23176
23780
|
* ModifyZone response structure.
|
|
23177
23781
|
* @class
|
|
@@ -29463,6 +30067,41 @@ class DeployConfigGroupVersionResponse extends AbstractModel {
|
|
|
29463
30067
|
}
|
|
29464
30068
|
}
|
|
29465
30069
|
|
|
30070
|
+
/**
|
|
30071
|
+
* IP range details.
|
|
30072
|
+
* @class
|
|
30073
|
+
*/
|
|
30074
|
+
class Addresses extends AbstractModel {
|
|
30075
|
+
constructor(){
|
|
30076
|
+
super();
|
|
30077
|
+
|
|
30078
|
+
/**
|
|
30079
|
+
* IPv4 subnet.
|
|
30080
|
+
* @type {Array.<string> || null}
|
|
30081
|
+
*/
|
|
30082
|
+
this.IPv4 = null;
|
|
30083
|
+
|
|
30084
|
+
/**
|
|
30085
|
+
* IPv6 subnet.
|
|
30086
|
+
* @type {Array.<string> || null}
|
|
30087
|
+
*/
|
|
30088
|
+
this.IPv6 = null;
|
|
30089
|
+
|
|
30090
|
+
}
|
|
30091
|
+
|
|
30092
|
+
/**
|
|
30093
|
+
* @private
|
|
30094
|
+
*/
|
|
30095
|
+
deserialize(params) {
|
|
30096
|
+
if (!params) {
|
|
30097
|
+
return;
|
|
30098
|
+
}
|
|
30099
|
+
this.IPv4 = 'IPv4' in params ? params.IPv4 : null;
|
|
30100
|
+
this.IPv6 = 'IPv6' in params ? params.IPv6 : null;
|
|
30101
|
+
|
|
30102
|
+
}
|
|
30103
|
+
}
|
|
30104
|
+
|
|
29466
30105
|
/**
|
|
29467
30106
|
* Client filtering
|
|
29468
30107
|
* @class
|
|
@@ -29891,6 +30530,7 @@ module.exports = {
|
|
|
29891
30530
|
DescribeSecurityIPGroupInfoResponse: DescribeSecurityIPGroupInfoResponse,
|
|
29892
30531
|
SlowPostConfig: SlowPostConfig,
|
|
29893
30532
|
OriginRecord: OriginRecord,
|
|
30533
|
+
OriginACLEntity: OriginACLEntity,
|
|
29894
30534
|
CompressionParameters: CompressionParameters,
|
|
29895
30535
|
DescribeConfigGroupVersionDetailResponse: DescribeConfigGroupVersionDetailResponse,
|
|
29896
30536
|
OriginDetail: OriginDetail,
|
|
@@ -29917,7 +30557,7 @@ module.exports = {
|
|
|
29917
30557
|
RateLimitConfig: RateLimitConfig,
|
|
29918
30558
|
CreateRealtimeLogDeliveryTaskRequest: CreateRealtimeLogDeliveryTaskRequest,
|
|
29919
30559
|
ModifyAccelerationDomainStatusesResponse: ModifyAccelerationDomainStatusesResponse,
|
|
29920
|
-
|
|
30560
|
+
DescribeOriginACLRequest: DescribeOriginACLRequest,
|
|
29921
30561
|
RuleExtraParameter: RuleExtraParameter,
|
|
29922
30562
|
ModifyL7AccRulePriorityRequest: ModifyL7AccRulePriorityRequest,
|
|
29923
30563
|
WebSocket: WebSocket,
|
|
@@ -29939,6 +30579,7 @@ module.exports = {
|
|
|
29939
30579
|
HealthChecker: HealthChecker,
|
|
29940
30580
|
CreateFunctionRuleRequest: CreateFunctionRuleRequest,
|
|
29941
30581
|
RuleBranch: RuleBranch,
|
|
30582
|
+
ConfirmOriginACLUpdateResponse: ConfirmOriginACLUpdateResponse,
|
|
29942
30583
|
DescribeAliasDomainsResponse: DescribeAliasDomainsResponse,
|
|
29943
30584
|
EnvInfo: EnvInfo,
|
|
29944
30585
|
ModifyLoadBalancerRequest: ModifyLoadBalancerRequest,
|
|
@@ -29949,11 +30590,13 @@ module.exports = {
|
|
|
29949
30590
|
PostMaxSizeParameters: PostMaxSizeParameters,
|
|
29950
30591
|
S3: S3,
|
|
29951
30592
|
DescribeDDoSAttackEventResponse: DescribeDDoSAttackEventResponse,
|
|
30593
|
+
DisableOriginACLRequest: DisableOriginACLRequest,
|
|
29952
30594
|
DeleteL4ProxyRulesResponse: DeleteL4ProxyRulesResponse,
|
|
29953
30595
|
ForceRedirect: ForceRedirect,
|
|
29954
30596
|
CodeAction: CodeAction,
|
|
29955
30597
|
CreateL7AccRulesResponse: CreateL7AccRulesResponse,
|
|
29956
30598
|
CachePrefresh: CachePrefresh,
|
|
30599
|
+
OriginACLInfo: OriginACLInfo,
|
|
29957
30600
|
DescribeTimingL7AnalysisDataResponse: DescribeTimingL7AnalysisDataResponse,
|
|
29958
30601
|
ImageOptimize: ImageOptimize,
|
|
29959
30602
|
CreateL7AccRulesRequest: CreateL7AccRulesRequest,
|
|
@@ -29990,8 +30633,9 @@ module.exports = {
|
|
|
29990
30633
|
DeleteZoneRequest: DeleteZoneRequest,
|
|
29991
30634
|
RangeOriginPullParameters: RangeOriginPullParameters,
|
|
29992
30635
|
BotManagedRule: BotManagedRule,
|
|
30636
|
+
CurrentOriginACL: CurrentOriginACL,
|
|
29993
30637
|
SecurityConfig: SecurityConfig,
|
|
29994
|
-
|
|
30638
|
+
CreateSecurityIPGroupRequest: CreateSecurityIPGroupRequest,
|
|
29995
30639
|
ModifyPlanRequest: ModifyPlanRequest,
|
|
29996
30640
|
HostName: HostName,
|
|
29997
30641
|
DDoS: DDoS,
|
|
@@ -29999,11 +30643,12 @@ module.exports = {
|
|
|
29999
30643
|
DescribeRulesSettingRequest: DescribeRulesSettingRequest,
|
|
30000
30644
|
EntityStatus: EntityStatus,
|
|
30001
30645
|
SmartRoutingParameters: SmartRoutingParameters,
|
|
30002
|
-
|
|
30646
|
+
DisableOriginACLResponse: DisableOriginACLResponse,
|
|
30647
|
+
DescribeOriginACLResponse: DescribeOriginACLResponse,
|
|
30003
30648
|
CreateFunctionRuleResponse: CreateFunctionRuleResponse,
|
|
30004
30649
|
HTTPUpstreamTimeoutParameters: HTTPUpstreamTimeoutParameters,
|
|
30005
30650
|
PrivateParameter: PrivateParameter,
|
|
30006
|
-
|
|
30651
|
+
L4OfflineLog: L4OfflineLog,
|
|
30007
30652
|
CreateOriginGroupRequest: CreateOriginGroupRequest,
|
|
30008
30653
|
TopDataRecord: TopDataRecord,
|
|
30009
30654
|
CreateSecurityIPGroupResponse: CreateSecurityIPGroupResponse,
|
|
@@ -30036,6 +30681,7 @@ module.exports = {
|
|
|
30036
30681
|
RenewPlanRequest: RenewPlanRequest,
|
|
30037
30682
|
DescribePrefetchTasksResponse: DescribePrefetchTasksResponse,
|
|
30038
30683
|
ManagedRuleDetail: ManagedRuleDetail,
|
|
30684
|
+
NextOriginACL: NextOriginACL,
|
|
30039
30685
|
DescribeZoneSettingRequest: DescribeZoneSettingRequest,
|
|
30040
30686
|
ModifyL4ProxyStatusResponse: ModifyL4ProxyStatusResponse,
|
|
30041
30687
|
FileVerification: FileVerification,
|
|
@@ -30101,6 +30747,7 @@ module.exports = {
|
|
|
30101
30747
|
ModifyL7AccRulePriorityResponse: ModifyL7AccRulePriorityResponse,
|
|
30102
30748
|
ModifyRequestHeaderParameters: ModifyRequestHeaderParameters,
|
|
30103
30749
|
CreateConfigGroupVersionResponse: CreateConfigGroupVersionResponse,
|
|
30750
|
+
ConfirmOriginACLUpdateRequest: ConfirmOriginACLUpdateRequest,
|
|
30104
30751
|
DownloadL7LogsRequest: DownloadL7LogsRequest,
|
|
30105
30752
|
WebSocketParameters: WebSocketParameters,
|
|
30106
30753
|
RuleItem: RuleItem,
|
|
@@ -30119,6 +30766,7 @@ module.exports = {
|
|
|
30119
30766
|
CacheParameters: CacheParameters,
|
|
30120
30767
|
TimingDataItem: TimingDataItem,
|
|
30121
30768
|
RateLimitUserRule: RateLimitUserRule,
|
|
30769
|
+
DeployRecord: DeployRecord,
|
|
30122
30770
|
CreatePlanForZoneRequest: CreatePlanForZoneRequest,
|
|
30123
30771
|
CreateL4ProxyRulesResponse: CreateL4ProxyRulesResponse,
|
|
30124
30772
|
ModifyCustomErrorPageRequest: ModifyCustomErrorPageRequest,
|
|
@@ -30167,6 +30815,7 @@ module.exports = {
|
|
|
30167
30815
|
CheckCnameStatusResponse: CheckCnameStatusResponse,
|
|
30168
30816
|
ImportZoneConfigResponse: ImportZoneConfigResponse,
|
|
30169
30817
|
CustomEndpoint: CustomEndpoint,
|
|
30818
|
+
ModifyOriginACLResponse: ModifyOriginACLResponse,
|
|
30170
30819
|
VerifyOwnershipRequest: VerifyOwnershipRequest,
|
|
30171
30820
|
ResponseSpeedLimitParameters: ResponseSpeedLimitParameters,
|
|
30172
30821
|
DeleteL4ProxyRequest: DeleteL4ProxyRequest,
|
|
@@ -30190,6 +30839,7 @@ module.exports = {
|
|
|
30190
30839
|
BindZoneToPlanResponse: BindZoneToPlanResponse,
|
|
30191
30840
|
UpstreamHTTP2Parameters: UpstreamHTTP2Parameters,
|
|
30192
30841
|
DescribeL7AccSettingResponse: DescribeL7AccSettingResponse,
|
|
30842
|
+
ModifyAliasDomainRequest: ModifyAliasDomainRequest,
|
|
30193
30843
|
OriginInfo: OriginInfo,
|
|
30194
30844
|
CreateDnsRecordRequest: CreateDnsRecordRequest,
|
|
30195
30845
|
WafRule: WafRule,
|
|
@@ -30232,6 +30882,7 @@ module.exports = {
|
|
|
30232
30882
|
SecurityPolicy: SecurityPolicy,
|
|
30233
30883
|
AscriptionInfo: AscriptionInfo,
|
|
30234
30884
|
OriginGroupHealthStatusDetail: OriginGroupHealthStatusDetail,
|
|
30885
|
+
ModifyOriginACLRequest: ModifyOriginACLRequest,
|
|
30235
30886
|
FirstPartConfig: FirstPartConfig,
|
|
30236
30887
|
Waf: Waf,
|
|
30237
30888
|
CreateApplicationProxyRuleRequest: CreateApplicationProxyRuleRequest,
|
|
@@ -30299,8 +30950,10 @@ module.exports = {
|
|
|
30299
30950
|
SkipCondition: SkipCondition,
|
|
30300
30951
|
CreateSharedCNAMERequest: CreateSharedCNAMERequest,
|
|
30301
30952
|
UpstreamHttp2: UpstreamHttp2,
|
|
30953
|
+
EnableOriginACLResponse: EnableOriginACLResponse,
|
|
30302
30954
|
DeleteAliasDomainResponse: DeleteAliasDomainResponse,
|
|
30303
30955
|
BotConfig: BotConfig,
|
|
30956
|
+
EnableOriginACLRequest: EnableOriginACLRequest,
|
|
30304
30957
|
ModifyZoneResponse: ModifyZoneResponse,
|
|
30305
30958
|
DescribeTopL7CacheDataRequest: DescribeTopL7CacheDataRequest,
|
|
30306
30959
|
CreateLoadBalancerRequest: CreateLoadBalancerRequest,
|
|
@@ -30419,6 +31072,7 @@ module.exports = {
|
|
|
30419
31072
|
HTTPResponseParameters: HTTPResponseParameters,
|
|
30420
31073
|
DescribeFunctionRulesRequest: DescribeFunctionRulesRequest,
|
|
30421
31074
|
DeployConfigGroupVersionResponse: DeployConfigGroupVersionResponse,
|
|
31075
|
+
Addresses: Addresses,
|
|
30422
31076
|
RateLimitIntelligence: RateLimitIntelligence,
|
|
30423
31077
|
DescribeDeployHistoryResponse: DescribeDeployHistoryResponse,
|
|
30424
31078
|
QueryString: QueryString,
|