@alicloud/ddoscoo20200101 2.4.3 → 2.5.0
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/dist/client.d.ts +1090 -118
- package/dist/client.js +842 -39
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1829 -339
package/dist/client.d.ts
CHANGED
|
@@ -178,14 +178,6 @@ export declare class AssociateWebCertRequest extends $tea.Model {
|
|
|
178
178
|
*/
|
|
179
179
|
domain?: string;
|
|
180
180
|
key?: string;
|
|
181
|
-
/**
|
|
182
|
-
* @remarks
|
|
183
|
-
* The ID of the resource group to which the instance belongs in Resource Management. This parameter is empty by default, which indicates that the instance belongs to the default resource group.
|
|
184
|
-
*
|
|
185
|
-
* @example
|
|
186
|
-
* default
|
|
187
|
-
*/
|
|
188
|
-
resourceGroupId?: string;
|
|
189
181
|
static names(): {
|
|
190
182
|
[key: string]: string;
|
|
191
183
|
};
|
|
@@ -1564,11 +1556,11 @@ export declare class CreateDomainResourceRequest extends $tea.Model {
|
|
|
1564
1556
|
* @remarks
|
|
1565
1557
|
* The address type of the origin server. Valid values:
|
|
1566
1558
|
*
|
|
1567
|
-
* * **0**: IP address
|
|
1559
|
+
* * **0**: IP address.
|
|
1568
1560
|
*
|
|
1569
|
-
* * **1**: domain name
|
|
1561
|
+
* * **1**: domain name.
|
|
1570
1562
|
*
|
|
1571
|
-
* This parameter is suitable for scenarios
|
|
1563
|
+
* This parameter is suitable for scenarios in which another proxy service, such as Web Application Firewall (WAF), is deployed between the origin server and Anti-DDoS Proxy. The address is the redirection address of the proxy service, such as the CNAME of WAF.
|
|
1572
1564
|
*
|
|
1573
1565
|
* This parameter is required.
|
|
1574
1566
|
*
|
|
@@ -1704,7 +1696,7 @@ export declare class CreatePortRequest extends $tea.Model {
|
|
|
1704
1696
|
frontendPort?: string;
|
|
1705
1697
|
/**
|
|
1706
1698
|
* @remarks
|
|
1707
|
-
* The type of the protocol. Valid values:
|
|
1699
|
+
* The type of the forwarding protocol. Valid values:
|
|
1708
1700
|
*
|
|
1709
1701
|
* * **tcp**
|
|
1710
1702
|
* * **udp**
|
|
@@ -2839,7 +2831,7 @@ export declare class DeleteSceneDefensePolicyRequest extends $tea.Model {
|
|
|
2839
2831
|
export declare class DeleteSceneDefensePolicyResponseBody extends $tea.Model {
|
|
2840
2832
|
/**
|
|
2841
2833
|
* @remarks
|
|
2842
|
-
* The ID
|
|
2834
|
+
* The request ID.
|
|
2843
2835
|
*
|
|
2844
2836
|
* @example
|
|
2845
2837
|
* F65DF043-E0EB-4796-9467-23DDCDF92C1D
|
|
@@ -2849,8 +2841,8 @@ export declare class DeleteSceneDefensePolicyResponseBody extends $tea.Model {
|
|
|
2849
2841
|
* @remarks
|
|
2850
2842
|
* Indicates whether the request was successful. Valid values:
|
|
2851
2843
|
*
|
|
2852
|
-
* * **true
|
|
2853
|
-
* * **false
|
|
2844
|
+
* * **true**
|
|
2845
|
+
* * **false**
|
|
2854
2846
|
*
|
|
2855
2847
|
* @example
|
|
2856
2848
|
* true
|
|
@@ -5311,6 +5303,157 @@ export declare class DescribeDomainAttackEventsResponse extends $tea.Model {
|
|
|
5311
5303
|
[key: string]: any;
|
|
5312
5304
|
});
|
|
5313
5305
|
}
|
|
5306
|
+
export declare class DescribeDomainBpsRequest extends $tea.Model {
|
|
5307
|
+
/**
|
|
5308
|
+
* @example
|
|
5309
|
+
* www.example.com
|
|
5310
|
+
*/
|
|
5311
|
+
domain?: string;
|
|
5312
|
+
/**
|
|
5313
|
+
* @remarks
|
|
5314
|
+
* This parameter is required.
|
|
5315
|
+
*
|
|
5316
|
+
* @example
|
|
5317
|
+
* 1722339300
|
|
5318
|
+
*/
|
|
5319
|
+
endTime?: number;
|
|
5320
|
+
/**
|
|
5321
|
+
* @remarks
|
|
5322
|
+
* This parameter is required.
|
|
5323
|
+
*
|
|
5324
|
+
* @example
|
|
5325
|
+
* 600
|
|
5326
|
+
*/
|
|
5327
|
+
interval?: number;
|
|
5328
|
+
/**
|
|
5329
|
+
* @remarks
|
|
5330
|
+
* This parameter is required.
|
|
5331
|
+
*
|
|
5332
|
+
* @example
|
|
5333
|
+
* cn
|
|
5334
|
+
*/
|
|
5335
|
+
region?: string;
|
|
5336
|
+
/**
|
|
5337
|
+
* @remarks
|
|
5338
|
+
* This parameter is required.
|
|
5339
|
+
*
|
|
5340
|
+
* @example
|
|
5341
|
+
* 1719211800
|
|
5342
|
+
*/
|
|
5343
|
+
startTime?: number;
|
|
5344
|
+
static names(): {
|
|
5345
|
+
[key: string]: string;
|
|
5346
|
+
};
|
|
5347
|
+
static types(): {
|
|
5348
|
+
[key: string]: any;
|
|
5349
|
+
};
|
|
5350
|
+
constructor(map?: {
|
|
5351
|
+
[key: string]: any;
|
|
5352
|
+
});
|
|
5353
|
+
}
|
|
5354
|
+
export declare class DescribeDomainBpsResponseBody extends $tea.Model {
|
|
5355
|
+
domainBps?: DescribeDomainBpsResponseBodyDomainBps[];
|
|
5356
|
+
/**
|
|
5357
|
+
* @example
|
|
5358
|
+
* C33EB3D5-AF96-43CA-9C7E-37A81BC06A1E
|
|
5359
|
+
*/
|
|
5360
|
+
requestId?: string;
|
|
5361
|
+
static names(): {
|
|
5362
|
+
[key: string]: string;
|
|
5363
|
+
};
|
|
5364
|
+
static types(): {
|
|
5365
|
+
[key: string]: any;
|
|
5366
|
+
};
|
|
5367
|
+
constructor(map?: {
|
|
5368
|
+
[key: string]: any;
|
|
5369
|
+
});
|
|
5370
|
+
}
|
|
5371
|
+
export declare class DescribeDomainBpsResponse extends $tea.Model {
|
|
5372
|
+
headers?: {
|
|
5373
|
+
[key: string]: string;
|
|
5374
|
+
};
|
|
5375
|
+
statusCode?: number;
|
|
5376
|
+
body?: DescribeDomainBpsResponseBody;
|
|
5377
|
+
static names(): {
|
|
5378
|
+
[key: string]: string;
|
|
5379
|
+
};
|
|
5380
|
+
static types(): {
|
|
5381
|
+
[key: string]: any;
|
|
5382
|
+
};
|
|
5383
|
+
constructor(map?: {
|
|
5384
|
+
[key: string]: any;
|
|
5385
|
+
});
|
|
5386
|
+
}
|
|
5387
|
+
export declare class DescribeDomainH2FingerprintRequest extends $tea.Model {
|
|
5388
|
+
/**
|
|
5389
|
+
* @example
|
|
5390
|
+
* example.aliyundoc.com
|
|
5391
|
+
*/
|
|
5392
|
+
domain?: string;
|
|
5393
|
+
/**
|
|
5394
|
+
* @example
|
|
5395
|
+
* 1726318200
|
|
5396
|
+
*/
|
|
5397
|
+
endTime?: number;
|
|
5398
|
+
/**
|
|
5399
|
+
* @remarks
|
|
5400
|
+
* This parameter is required.
|
|
5401
|
+
*
|
|
5402
|
+
* @example
|
|
5403
|
+
* 20
|
|
5404
|
+
*/
|
|
5405
|
+
limit?: number;
|
|
5406
|
+
/**
|
|
5407
|
+
* @remarks
|
|
5408
|
+
* This parameter is required.
|
|
5409
|
+
*
|
|
5410
|
+
* @example
|
|
5411
|
+
* 1716435180
|
|
5412
|
+
*/
|
|
5413
|
+
startTime?: number;
|
|
5414
|
+
static names(): {
|
|
5415
|
+
[key: string]: string;
|
|
5416
|
+
};
|
|
5417
|
+
static types(): {
|
|
5418
|
+
[key: string]: any;
|
|
5419
|
+
};
|
|
5420
|
+
constructor(map?: {
|
|
5421
|
+
[key: string]: any;
|
|
5422
|
+
});
|
|
5423
|
+
}
|
|
5424
|
+
export declare class DescribeDomainH2FingerprintResponseBody extends $tea.Model {
|
|
5425
|
+
domainH2Fp?: DescribeDomainH2FingerprintResponseBodyDomainH2Fp[];
|
|
5426
|
+
/**
|
|
5427
|
+
* @example
|
|
5428
|
+
* 112777CC-2AD6-46FC-A263-00B931406FCD
|
|
5429
|
+
*/
|
|
5430
|
+
requestId?: string;
|
|
5431
|
+
static names(): {
|
|
5432
|
+
[key: string]: string;
|
|
5433
|
+
};
|
|
5434
|
+
static types(): {
|
|
5435
|
+
[key: string]: any;
|
|
5436
|
+
};
|
|
5437
|
+
constructor(map?: {
|
|
5438
|
+
[key: string]: any;
|
|
5439
|
+
});
|
|
5440
|
+
}
|
|
5441
|
+
export declare class DescribeDomainH2FingerprintResponse extends $tea.Model {
|
|
5442
|
+
headers?: {
|
|
5443
|
+
[key: string]: string;
|
|
5444
|
+
};
|
|
5445
|
+
statusCode?: number;
|
|
5446
|
+
body?: DescribeDomainH2FingerprintResponseBody;
|
|
5447
|
+
static names(): {
|
|
5448
|
+
[key: string]: string;
|
|
5449
|
+
};
|
|
5450
|
+
static types(): {
|
|
5451
|
+
[key: string]: any;
|
|
5452
|
+
};
|
|
5453
|
+
constructor(map?: {
|
|
5454
|
+
[key: string]: any;
|
|
5455
|
+
});
|
|
5456
|
+
}
|
|
5314
5457
|
export declare class DescribeDomainOverviewRequest extends $tea.Model {
|
|
5315
5458
|
/**
|
|
5316
5459
|
* @remarks
|
|
@@ -5534,7 +5677,7 @@ export declare class DescribeDomainResourceRequest extends $tea.Model {
|
|
|
5534
5677
|
instanceIds?: string[];
|
|
5535
5678
|
/**
|
|
5536
5679
|
* @remarks
|
|
5537
|
-
* The
|
|
5680
|
+
* The page number. Default value: **1**.
|
|
5538
5681
|
*
|
|
5539
5682
|
* @example
|
|
5540
5683
|
* 1
|
|
@@ -5542,9 +5685,7 @@ export declare class DescribeDomainResourceRequest extends $tea.Model {
|
|
|
5542
5685
|
pageNumber?: number;
|
|
5543
5686
|
/**
|
|
5544
5687
|
* @remarks
|
|
5545
|
-
* The number of entries
|
|
5546
|
-
*
|
|
5547
|
-
* This parameter is required.
|
|
5688
|
+
* The number of entries per page.
|
|
5548
5689
|
*
|
|
5549
5690
|
* @example
|
|
5550
5691
|
* 10
|
|
@@ -5950,7 +6091,341 @@ export declare class DescribeDomainStatusCodeListResponseBody extends $tea.Model
|
|
|
5950
6091
|
* @remarks
|
|
5951
6092
|
* The statistics on response status codes.
|
|
5952
6093
|
*/
|
|
5953
|
-
statusCodeList?: DescribeDomainStatusCodeListResponseBodyStatusCodeList[];
|
|
6094
|
+
statusCodeList?: DescribeDomainStatusCodeListResponseBodyStatusCodeList[];
|
|
6095
|
+
static names(): {
|
|
6096
|
+
[key: string]: string;
|
|
6097
|
+
};
|
|
6098
|
+
static types(): {
|
|
6099
|
+
[key: string]: any;
|
|
6100
|
+
};
|
|
6101
|
+
constructor(map?: {
|
|
6102
|
+
[key: string]: any;
|
|
6103
|
+
});
|
|
6104
|
+
}
|
|
6105
|
+
export declare class DescribeDomainStatusCodeListResponse extends $tea.Model {
|
|
6106
|
+
headers?: {
|
|
6107
|
+
[key: string]: string;
|
|
6108
|
+
};
|
|
6109
|
+
statusCode?: number;
|
|
6110
|
+
body?: DescribeDomainStatusCodeListResponseBody;
|
|
6111
|
+
static names(): {
|
|
6112
|
+
[key: string]: string;
|
|
6113
|
+
};
|
|
6114
|
+
static types(): {
|
|
6115
|
+
[key: string]: any;
|
|
6116
|
+
};
|
|
6117
|
+
constructor(map?: {
|
|
6118
|
+
[key: string]: any;
|
|
6119
|
+
});
|
|
6120
|
+
}
|
|
6121
|
+
export declare class DescribeDomainTopAttackListRequest extends $tea.Model {
|
|
6122
|
+
/**
|
|
6123
|
+
* @remarks
|
|
6124
|
+
* The end of the time range to query. The value is a UNIX timestamp. Unit: seconds.
|
|
6125
|
+
*
|
|
6126
|
+
* > This UNIX timestamp must indicate a point in time that is accurate to the minute.
|
|
6127
|
+
*
|
|
6128
|
+
* This parameter is required.
|
|
6129
|
+
*
|
|
6130
|
+
* @example
|
|
6131
|
+
* 1583683200
|
|
6132
|
+
*/
|
|
6133
|
+
endTime?: number;
|
|
6134
|
+
/**
|
|
6135
|
+
* @remarks
|
|
6136
|
+
* The ID of the resource group to which the instance belongs in Resource Management. This parameter is empty by default, which indicates that the instance belongs to the default resource group.
|
|
6137
|
+
*
|
|
6138
|
+
* @example
|
|
6139
|
+
* default
|
|
6140
|
+
*/
|
|
6141
|
+
resourceGroupId?: string;
|
|
6142
|
+
/**
|
|
6143
|
+
* @remarks
|
|
6144
|
+
* The beginning of the time range to query. The value is a UNIX timestamp. Unit: seconds.
|
|
6145
|
+
*
|
|
6146
|
+
* > This UNIX timestamp must indicate a point in time that is accurate to the minute.
|
|
6147
|
+
*
|
|
6148
|
+
* This parameter is required.
|
|
6149
|
+
*
|
|
6150
|
+
* @example
|
|
6151
|
+
* 1582992000
|
|
6152
|
+
*/
|
|
6153
|
+
startTime?: number;
|
|
6154
|
+
static names(): {
|
|
6155
|
+
[key: string]: string;
|
|
6156
|
+
};
|
|
6157
|
+
static types(): {
|
|
6158
|
+
[key: string]: any;
|
|
6159
|
+
};
|
|
6160
|
+
constructor(map?: {
|
|
6161
|
+
[key: string]: any;
|
|
6162
|
+
});
|
|
6163
|
+
}
|
|
6164
|
+
export declare class DescribeDomainTopAttackListResponseBody extends $tea.Model {
|
|
6165
|
+
/**
|
|
6166
|
+
* @remarks
|
|
6167
|
+
* The peak QPS of the website.
|
|
6168
|
+
*/
|
|
6169
|
+
attackList?: DescribeDomainTopAttackListResponseBodyAttackList[];
|
|
6170
|
+
/**
|
|
6171
|
+
* @remarks
|
|
6172
|
+
* The ID of the request.
|
|
6173
|
+
*
|
|
6174
|
+
* @example
|
|
6175
|
+
* C33EB3D5-AF96-43CA-9C7E-37A81BC06A1E
|
|
6176
|
+
*/
|
|
6177
|
+
requestId?: string;
|
|
6178
|
+
static names(): {
|
|
6179
|
+
[key: string]: string;
|
|
6180
|
+
};
|
|
6181
|
+
static types(): {
|
|
6182
|
+
[key: string]: any;
|
|
6183
|
+
};
|
|
6184
|
+
constructor(map?: {
|
|
6185
|
+
[key: string]: any;
|
|
6186
|
+
});
|
|
6187
|
+
}
|
|
6188
|
+
export declare class DescribeDomainTopAttackListResponse extends $tea.Model {
|
|
6189
|
+
headers?: {
|
|
6190
|
+
[key: string]: string;
|
|
6191
|
+
};
|
|
6192
|
+
statusCode?: number;
|
|
6193
|
+
body?: DescribeDomainTopAttackListResponseBody;
|
|
6194
|
+
static names(): {
|
|
6195
|
+
[key: string]: string;
|
|
6196
|
+
};
|
|
6197
|
+
static types(): {
|
|
6198
|
+
[key: string]: any;
|
|
6199
|
+
};
|
|
6200
|
+
constructor(map?: {
|
|
6201
|
+
[key: string]: any;
|
|
6202
|
+
});
|
|
6203
|
+
}
|
|
6204
|
+
export declare class DescribeDomainTopFingerprintRequest extends $tea.Model {
|
|
6205
|
+
/**
|
|
6206
|
+
* @example
|
|
6207
|
+
* example.aliyundoc.com
|
|
6208
|
+
*/
|
|
6209
|
+
domain?: string;
|
|
6210
|
+
/**
|
|
6211
|
+
* @remarks
|
|
6212
|
+
* This parameter is required.
|
|
6213
|
+
*
|
|
6214
|
+
* @example
|
|
6215
|
+
* 1723552200
|
|
6216
|
+
*/
|
|
6217
|
+
endTime?: number;
|
|
6218
|
+
/**
|
|
6219
|
+
* @remarks
|
|
6220
|
+
* This parameter is required.
|
|
6221
|
+
*
|
|
6222
|
+
* @example
|
|
6223
|
+
* 60
|
|
6224
|
+
*/
|
|
6225
|
+
interval?: number;
|
|
6226
|
+
/**
|
|
6227
|
+
* @remarks
|
|
6228
|
+
* This parameter is required.
|
|
6229
|
+
*
|
|
6230
|
+
* @example
|
|
6231
|
+
* 10
|
|
6232
|
+
*/
|
|
6233
|
+
limit?: number;
|
|
6234
|
+
/**
|
|
6235
|
+
* @remarks
|
|
6236
|
+
* This parameter is required.
|
|
6237
|
+
*
|
|
6238
|
+
* @example
|
|
6239
|
+
* cn
|
|
6240
|
+
*/
|
|
6241
|
+
region?: string;
|
|
6242
|
+
/**
|
|
6243
|
+
* @remarks
|
|
6244
|
+
* This parameter is required.
|
|
6245
|
+
*
|
|
6246
|
+
* @example
|
|
6247
|
+
* 1719211800
|
|
6248
|
+
*/
|
|
6249
|
+
startTime?: number;
|
|
6250
|
+
static names(): {
|
|
6251
|
+
[key: string]: string;
|
|
6252
|
+
};
|
|
6253
|
+
static types(): {
|
|
6254
|
+
[key: string]: any;
|
|
6255
|
+
};
|
|
6256
|
+
constructor(map?: {
|
|
6257
|
+
[key: string]: any;
|
|
6258
|
+
});
|
|
6259
|
+
}
|
|
6260
|
+
export declare class DescribeDomainTopFingerprintResponseBody extends $tea.Model {
|
|
6261
|
+
domainTopFp?: DescribeDomainTopFingerprintResponseBodyDomainTopFp[];
|
|
6262
|
+
/**
|
|
6263
|
+
* @example
|
|
6264
|
+
* C33EB3D5-AF96-43CA-9C7E-37A81BC06A1E
|
|
6265
|
+
*/
|
|
6266
|
+
requestId?: string;
|
|
6267
|
+
static names(): {
|
|
6268
|
+
[key: string]: string;
|
|
6269
|
+
};
|
|
6270
|
+
static types(): {
|
|
6271
|
+
[key: string]: any;
|
|
6272
|
+
};
|
|
6273
|
+
constructor(map?: {
|
|
6274
|
+
[key: string]: any;
|
|
6275
|
+
});
|
|
6276
|
+
}
|
|
6277
|
+
export declare class DescribeDomainTopFingerprintResponse extends $tea.Model {
|
|
6278
|
+
headers?: {
|
|
6279
|
+
[key: string]: string;
|
|
6280
|
+
};
|
|
6281
|
+
statusCode?: number;
|
|
6282
|
+
body?: DescribeDomainTopFingerprintResponseBody;
|
|
6283
|
+
static names(): {
|
|
6284
|
+
[key: string]: string;
|
|
6285
|
+
};
|
|
6286
|
+
static types(): {
|
|
6287
|
+
[key: string]: any;
|
|
6288
|
+
};
|
|
6289
|
+
constructor(map?: {
|
|
6290
|
+
[key: string]: any;
|
|
6291
|
+
});
|
|
6292
|
+
}
|
|
6293
|
+
export declare class DescribeDomainTopHttpMethodRequest extends $tea.Model {
|
|
6294
|
+
/**
|
|
6295
|
+
* @example
|
|
6296
|
+
* example.aliyundoc.com
|
|
6297
|
+
*/
|
|
6298
|
+
domain?: string;
|
|
6299
|
+
/**
|
|
6300
|
+
* @remarks
|
|
6301
|
+
* This parameter is required.
|
|
6302
|
+
*
|
|
6303
|
+
* @example
|
|
6304
|
+
* 1722339300
|
|
6305
|
+
*/
|
|
6306
|
+
endTime?: number;
|
|
6307
|
+
/**
|
|
6308
|
+
* @remarks
|
|
6309
|
+
* This parameter is required.
|
|
6310
|
+
*
|
|
6311
|
+
* @example
|
|
6312
|
+
* 20
|
|
6313
|
+
*/
|
|
6314
|
+
limit?: number;
|
|
6315
|
+
/**
|
|
6316
|
+
* @remarks
|
|
6317
|
+
* This parameter is required.
|
|
6318
|
+
*
|
|
6319
|
+
* @example
|
|
6320
|
+
* cn
|
|
6321
|
+
*/
|
|
6322
|
+
region?: string;
|
|
6323
|
+
/**
|
|
6324
|
+
* @remarks
|
|
6325
|
+
* This parameter is required.
|
|
6326
|
+
*
|
|
6327
|
+
* @example
|
|
6328
|
+
* 1712449710
|
|
6329
|
+
*/
|
|
6330
|
+
startTime?: number;
|
|
6331
|
+
static names(): {
|
|
6332
|
+
[key: string]: string;
|
|
6333
|
+
};
|
|
6334
|
+
static types(): {
|
|
6335
|
+
[key: string]: any;
|
|
6336
|
+
};
|
|
6337
|
+
constructor(map?: {
|
|
6338
|
+
[key: string]: any;
|
|
6339
|
+
});
|
|
6340
|
+
}
|
|
6341
|
+
export declare class DescribeDomainTopHttpMethodResponseBody extends $tea.Model {
|
|
6342
|
+
domainTopMethod?: DescribeDomainTopHttpMethodResponseBodyDomainTopMethod[];
|
|
6343
|
+
/**
|
|
6344
|
+
* @example
|
|
6345
|
+
* CF33B4C3-196E-4015-AADD-5CAD00057B80
|
|
6346
|
+
*/
|
|
6347
|
+
requestId?: string;
|
|
6348
|
+
static names(): {
|
|
6349
|
+
[key: string]: string;
|
|
6350
|
+
};
|
|
6351
|
+
static types(): {
|
|
6352
|
+
[key: string]: any;
|
|
6353
|
+
};
|
|
6354
|
+
constructor(map?: {
|
|
6355
|
+
[key: string]: any;
|
|
6356
|
+
});
|
|
6357
|
+
}
|
|
6358
|
+
export declare class DescribeDomainTopHttpMethodResponse extends $tea.Model {
|
|
6359
|
+
headers?: {
|
|
6360
|
+
[key: string]: string;
|
|
6361
|
+
};
|
|
6362
|
+
statusCode?: number;
|
|
6363
|
+
body?: DescribeDomainTopHttpMethodResponseBody;
|
|
6364
|
+
static names(): {
|
|
6365
|
+
[key: string]: string;
|
|
6366
|
+
};
|
|
6367
|
+
static types(): {
|
|
6368
|
+
[key: string]: any;
|
|
6369
|
+
};
|
|
6370
|
+
constructor(map?: {
|
|
6371
|
+
[key: string]: any;
|
|
6372
|
+
});
|
|
6373
|
+
}
|
|
6374
|
+
export declare class DescribeDomainTopRefererRequest extends $tea.Model {
|
|
6375
|
+
/**
|
|
6376
|
+
* @example
|
|
6377
|
+
* example.aliyundoc.com
|
|
6378
|
+
*/
|
|
6379
|
+
domain?: string;
|
|
6380
|
+
/**
|
|
6381
|
+
* @remarks
|
|
6382
|
+
* This parameter is required.
|
|
6383
|
+
*
|
|
6384
|
+
* @example
|
|
6385
|
+
* 1721561100
|
|
6386
|
+
*/
|
|
6387
|
+
endTime?: number;
|
|
6388
|
+
/**
|
|
6389
|
+
* @remarks
|
|
6390
|
+
* This parameter is required.
|
|
6391
|
+
*
|
|
6392
|
+
* @example
|
|
6393
|
+
* 10
|
|
6394
|
+
*/
|
|
6395
|
+
limit?: number;
|
|
6396
|
+
/**
|
|
6397
|
+
* @remarks
|
|
6398
|
+
* This parameter is required.
|
|
6399
|
+
*
|
|
6400
|
+
* @example
|
|
6401
|
+
* cn
|
|
6402
|
+
*/
|
|
6403
|
+
region?: string;
|
|
6404
|
+
/**
|
|
6405
|
+
* @remarks
|
|
6406
|
+
* This parameter is required.
|
|
6407
|
+
*
|
|
6408
|
+
* @example
|
|
6409
|
+
* 1701991920
|
|
6410
|
+
*/
|
|
6411
|
+
startTime?: number;
|
|
6412
|
+
static names(): {
|
|
6413
|
+
[key: string]: string;
|
|
6414
|
+
};
|
|
6415
|
+
static types(): {
|
|
6416
|
+
[key: string]: any;
|
|
6417
|
+
};
|
|
6418
|
+
constructor(map?: {
|
|
6419
|
+
[key: string]: any;
|
|
6420
|
+
});
|
|
6421
|
+
}
|
|
6422
|
+
export declare class DescribeDomainTopRefererResponseBody extends $tea.Model {
|
|
6423
|
+
domainTopReferer?: DescribeDomainTopRefererResponseBodyDomainTopReferer[];
|
|
6424
|
+
/**
|
|
6425
|
+
* @example
|
|
6426
|
+
* CF33B4C3-196E-4015-AADD-5CAD00057B80
|
|
6427
|
+
*/
|
|
6428
|
+
requestId?: string;
|
|
5954
6429
|
static names(): {
|
|
5955
6430
|
[key: string]: string;
|
|
5956
6431
|
};
|
|
@@ -5961,12 +6436,12 @@ export declare class DescribeDomainStatusCodeListResponseBody extends $tea.Model
|
|
|
5961
6436
|
[key: string]: any;
|
|
5962
6437
|
});
|
|
5963
6438
|
}
|
|
5964
|
-
export declare class
|
|
6439
|
+
export declare class DescribeDomainTopRefererResponse extends $tea.Model {
|
|
5965
6440
|
headers?: {
|
|
5966
6441
|
[key: string]: string;
|
|
5967
6442
|
};
|
|
5968
6443
|
statusCode?: number;
|
|
5969
|
-
body?:
|
|
6444
|
+
body?: DescribeDomainTopRefererResponseBody;
|
|
5970
6445
|
static names(): {
|
|
5971
6446
|
[key: string]: string;
|
|
5972
6447
|
};
|
|
@@ -5977,37 +6452,42 @@ export declare class DescribeDomainStatusCodeListResponse extends $tea.Model {
|
|
|
5977
6452
|
[key: string]: any;
|
|
5978
6453
|
});
|
|
5979
6454
|
}
|
|
5980
|
-
export declare class
|
|
6455
|
+
export declare class DescribeDomainTopUserAgentRequest extends $tea.Model {
|
|
6456
|
+
/**
|
|
6457
|
+
* @example
|
|
6458
|
+
* www.example.com
|
|
6459
|
+
*/
|
|
6460
|
+
domain?: string;
|
|
5981
6461
|
/**
|
|
5982
6462
|
* @remarks
|
|
5983
|
-
* The end of the time range to query. The value is a UNIX timestamp. Unit: seconds.
|
|
5984
|
-
*
|
|
5985
|
-
* > This UNIX timestamp must indicate a point in time that is accurate to the minute.
|
|
5986
|
-
*
|
|
5987
6463
|
* This parameter is required.
|
|
5988
6464
|
*
|
|
5989
6465
|
* @example
|
|
5990
|
-
*
|
|
6466
|
+
* 1708352700
|
|
5991
6467
|
*/
|
|
5992
6468
|
endTime?: number;
|
|
5993
6469
|
/**
|
|
5994
6470
|
* @remarks
|
|
5995
|
-
*
|
|
6471
|
+
* This parameter is required.
|
|
5996
6472
|
*
|
|
5997
6473
|
* @example
|
|
5998
|
-
*
|
|
6474
|
+
* 20
|
|
5999
6475
|
*/
|
|
6000
|
-
|
|
6476
|
+
limit?: number;
|
|
6001
6477
|
/**
|
|
6002
6478
|
* @remarks
|
|
6003
|
-
*
|
|
6004
|
-
*
|
|
6005
|
-
* > This UNIX timestamp must indicate a point in time that is accurate to the minute.
|
|
6479
|
+
* This parameter is required.
|
|
6006
6480
|
*
|
|
6481
|
+
* @example
|
|
6482
|
+
* cn
|
|
6483
|
+
*/
|
|
6484
|
+
region?: string;
|
|
6485
|
+
/**
|
|
6486
|
+
* @remarks
|
|
6007
6487
|
* This parameter is required.
|
|
6008
6488
|
*
|
|
6009
6489
|
* @example
|
|
6010
|
-
*
|
|
6490
|
+
* 1609430400
|
|
6011
6491
|
*/
|
|
6012
6492
|
startTime?: number;
|
|
6013
6493
|
static names(): {
|
|
@@ -6020,18 +6500,11 @@ export declare class DescribeDomainTopAttackListRequest extends $tea.Model {
|
|
|
6020
6500
|
[key: string]: any;
|
|
6021
6501
|
});
|
|
6022
6502
|
}
|
|
6023
|
-
export declare class
|
|
6024
|
-
|
|
6025
|
-
* @remarks
|
|
6026
|
-
* The peak QPS of the website.
|
|
6027
|
-
*/
|
|
6028
|
-
attackList?: DescribeDomainTopAttackListResponseBodyAttackList[];
|
|
6503
|
+
export declare class DescribeDomainTopUserAgentResponseBody extends $tea.Model {
|
|
6504
|
+
domainTopUa?: DescribeDomainTopUserAgentResponseBodyDomainTopUa[];
|
|
6029
6505
|
/**
|
|
6030
|
-
* @remarks
|
|
6031
|
-
* The ID of the request.
|
|
6032
|
-
*
|
|
6033
6506
|
* @example
|
|
6034
|
-
*
|
|
6507
|
+
* CF33B4C3-196E-4015-AADD-5CAD00057B80
|
|
6035
6508
|
*/
|
|
6036
6509
|
requestId?: string;
|
|
6037
6510
|
static names(): {
|
|
@@ -6044,12 +6517,12 @@ export declare class DescribeDomainTopAttackListResponseBody extends $tea.Model
|
|
|
6044
6517
|
[key: string]: any;
|
|
6045
6518
|
});
|
|
6046
6519
|
}
|
|
6047
|
-
export declare class
|
|
6520
|
+
export declare class DescribeDomainTopUserAgentResponse extends $tea.Model {
|
|
6048
6521
|
headers?: {
|
|
6049
6522
|
[key: string]: string;
|
|
6050
6523
|
};
|
|
6051
6524
|
statusCode?: number;
|
|
6052
|
-
body?:
|
|
6525
|
+
body?: DescribeDomainTopUserAgentResponseBody;
|
|
6053
6526
|
static names(): {
|
|
6054
6527
|
[key: string]: string;
|
|
6055
6528
|
};
|
|
@@ -6875,7 +7348,7 @@ export declare class DescribeHealthCheckListResponseBody extends $tea.Model {
|
|
|
6875
7348
|
healthCheckList?: DescribeHealthCheckListResponseBodyHealthCheckList[];
|
|
6876
7349
|
/**
|
|
6877
7350
|
* @remarks
|
|
6878
|
-
* The ID
|
|
7351
|
+
* The request ID.
|
|
6879
7352
|
*
|
|
6880
7353
|
* @example
|
|
6881
7354
|
* 83B4AF42-E8EE-4DC9-BD73-87B7733A36F9
|
|
@@ -7630,6 +8103,11 @@ export declare class DescribeL7RsPolicyResponseBody extends $tea.Model {
|
|
|
7630
8103
|
* 9E7F6B2C-03F2-462F-9076-B782CF0DD502
|
|
7631
8104
|
*/
|
|
7632
8105
|
requestId?: string;
|
|
8106
|
+
/**
|
|
8107
|
+
* @example
|
|
8108
|
+
* 300
|
|
8109
|
+
*/
|
|
8110
|
+
rsAttrRwTimeoutMax?: number;
|
|
7633
8111
|
/**
|
|
7634
8112
|
* @remarks
|
|
7635
8113
|
* The back-to-origin retry switch. Valid values:
|
|
@@ -8116,7 +8594,7 @@ export declare class DescribeNetworkRulesRequest extends $tea.Model {
|
|
|
8116
8594
|
export declare class DescribeNetworkRulesResponseBody extends $tea.Model {
|
|
8117
8595
|
/**
|
|
8118
8596
|
* @remarks
|
|
8119
|
-
* The details of
|
|
8597
|
+
* The details of the port forwarding rule.
|
|
8120
8598
|
*/
|
|
8121
8599
|
networkRules?: DescribeNetworkRulesResponseBodyNetworkRules[];
|
|
8122
8600
|
/**
|
|
@@ -8327,9 +8805,7 @@ export declare class DescribePortRequest extends $tea.Model {
|
|
|
8327
8805
|
instanceId?: string;
|
|
8328
8806
|
/**
|
|
8329
8807
|
* @remarks
|
|
8330
|
-
* The
|
|
8331
|
-
*
|
|
8332
|
-
* This parameter is required.
|
|
8808
|
+
* The page number. For example, if you want to obtain results on the first page, set the value to **1**.
|
|
8333
8809
|
*
|
|
8334
8810
|
* @example
|
|
8335
8811
|
* 1
|
|
@@ -8337,9 +8813,7 @@ export declare class DescribePortRequest extends $tea.Model {
|
|
|
8337
8813
|
pageNumber?: number;
|
|
8338
8814
|
/**
|
|
8339
8815
|
* @remarks
|
|
8340
|
-
* The number of entries
|
|
8341
|
-
*
|
|
8342
|
-
* This parameter is required.
|
|
8816
|
+
* The number of entries per page.
|
|
8343
8817
|
*
|
|
8344
8818
|
* @example
|
|
8345
8819
|
* 10
|
|
@@ -8632,7 +9106,7 @@ export declare class DescribePortCcAttackTopIPResponseBody extends $tea.Model {
|
|
|
8632
9106
|
requestId?: string;
|
|
8633
9107
|
/**
|
|
8634
9108
|
* @remarks
|
|
8635
|
-
* The
|
|
9109
|
+
* The top IP addresses from which most attacks are initiated.
|
|
8636
9110
|
*/
|
|
8637
9111
|
topIp?: DescribePortCcAttackTopIPResponseBodyTopIp[];
|
|
8638
9112
|
static names(): {
|
|
@@ -10688,7 +11162,7 @@ export declare class DescribeUnBlockCountRequest extends $tea.Model {
|
|
|
10688
11162
|
export declare class DescribeUnBlockCountResponseBody extends $tea.Model {
|
|
10689
11163
|
/**
|
|
10690
11164
|
* @remarks
|
|
10691
|
-
* The remaining
|
|
11165
|
+
* The remaining number of times that you can enable the near-origin traffic diversion feature.
|
|
10692
11166
|
*
|
|
10693
11167
|
* @example
|
|
10694
11168
|
* 7
|
|
@@ -10696,7 +11170,7 @@ export declare class DescribeUnBlockCountResponseBody extends $tea.Model {
|
|
|
10696
11170
|
remainCount?: number;
|
|
10697
11171
|
/**
|
|
10698
11172
|
* @remarks
|
|
10699
|
-
* The ID
|
|
11173
|
+
* The request ID.
|
|
10700
11174
|
*
|
|
10701
11175
|
* @example
|
|
10702
11176
|
* C33EB3D5-AF96-43CA-9C7E-37A81BC06A1E
|
|
@@ -10704,7 +11178,7 @@ export declare class DescribeUnBlockCountResponseBody extends $tea.Model {
|
|
|
10704
11178
|
requestId?: string;
|
|
10705
11179
|
/**
|
|
10706
11180
|
* @remarks
|
|
10707
|
-
* The total
|
|
11181
|
+
* The total number of times that you can enable the near-origin traffic diversion feature.
|
|
10708
11182
|
*
|
|
10709
11183
|
* @example
|
|
10710
11184
|
* 10
|
|
@@ -11774,39 +12248,63 @@ export declare class DescribeWebReportTopIpResponse extends $tea.Model {
|
|
|
11774
12248
|
}
|
|
11775
12249
|
export declare class DescribeWebRulesRequest extends $tea.Model {
|
|
11776
12250
|
/**
|
|
12251
|
+
* @remarks
|
|
12252
|
+
* The CNAME address to query.
|
|
12253
|
+
*
|
|
11777
12254
|
* @example
|
|
11778
12255
|
* kzmk7b8tt351****.aliyunddos1014****
|
|
11779
12256
|
*/
|
|
11780
12257
|
cname?: string;
|
|
11781
12258
|
/**
|
|
12259
|
+
* @remarks
|
|
12260
|
+
* The domain name of the website to query.
|
|
12261
|
+
*
|
|
12262
|
+
* > The domain must have been configured with website business forwarding rules. You can call [DescribeDomains](~~DescribeDomains~~) to query all domains that have been configured with website business forwarding rules.
|
|
12263
|
+
*
|
|
11782
12264
|
* @example
|
|
11783
12265
|
* example.com
|
|
11784
12266
|
*/
|
|
11785
12267
|
domain?: string;
|
|
11786
12268
|
/**
|
|
12269
|
+
* @remarks
|
|
12270
|
+
* The list of DDoS protection instance IDs to query.
|
|
12271
|
+
*
|
|
11787
12272
|
* @example
|
|
11788
12273
|
* ddoscoo-cn-mp91j1ao****
|
|
11789
12274
|
*/
|
|
11790
12275
|
instanceIds?: string[];
|
|
11791
12276
|
/**
|
|
12277
|
+
* @remarks
|
|
12278
|
+
* The page number. Default value: **1**.
|
|
12279
|
+
*
|
|
11792
12280
|
* @example
|
|
11793
12281
|
* 1
|
|
11794
12282
|
*/
|
|
11795
12283
|
pageNumber?: number;
|
|
11796
12284
|
/**
|
|
11797
12285
|
* @remarks
|
|
11798
|
-
*
|
|
12286
|
+
* The number of entries per page. Valid values: **1** to **10**.
|
|
11799
12287
|
*
|
|
11800
12288
|
* @example
|
|
11801
12289
|
* 10
|
|
11802
12290
|
*/
|
|
11803
12291
|
pageSize?: number;
|
|
11804
12292
|
/**
|
|
12293
|
+
* @remarks
|
|
12294
|
+
* The query matching pattern. Values:
|
|
12295
|
+
* - **fuzzy** (default): Indicates fuzzy query.
|
|
12296
|
+
* - **exact**: Indicates exact query.
|
|
12297
|
+
*
|
|
11805
12298
|
* @example
|
|
11806
12299
|
* exact
|
|
11807
12300
|
*/
|
|
11808
12301
|
queryDomainPattern?: string;
|
|
11809
12302
|
/**
|
|
12303
|
+
* @remarks
|
|
12304
|
+
* The resource group ID of the DDoS protection instance in the resource management service.
|
|
12305
|
+
*
|
|
12306
|
+
* Not setting this parameter indicates the default resource group.
|
|
12307
|
+
*
|
|
11810
12308
|
* @example
|
|
11811
12309
|
* rg-acfm2pz25js****
|
|
11812
12310
|
*/
|
|
@@ -11823,15 +12321,25 @@ export declare class DescribeWebRulesRequest extends $tea.Model {
|
|
|
11823
12321
|
}
|
|
11824
12322
|
export declare class DescribeWebRulesResponseBody extends $tea.Model {
|
|
11825
12323
|
/**
|
|
12324
|
+
* @remarks
|
|
12325
|
+
* The ID of the request.
|
|
12326
|
+
*
|
|
11826
12327
|
* @example
|
|
11827
12328
|
* 0F5B72DD-96F4-423A-B12B-A5151DD746B8
|
|
11828
12329
|
*/
|
|
11829
12330
|
requestId?: string;
|
|
11830
12331
|
/**
|
|
12332
|
+
* @remarks
|
|
12333
|
+
* The total number of queried website business forwarding rules.
|
|
12334
|
+
*
|
|
11831
12335
|
* @example
|
|
11832
12336
|
* 1
|
|
11833
12337
|
*/
|
|
11834
12338
|
totalCount?: number;
|
|
12339
|
+
/**
|
|
12340
|
+
* @remarks
|
|
12341
|
+
* The configurations of the forwarding rule.
|
|
12342
|
+
*/
|
|
11835
12343
|
webRules?: DescribeWebRulesResponseBodyWebRules[];
|
|
11836
12344
|
static names(): {
|
|
11837
12345
|
[key: string]: string;
|
|
@@ -12802,9 +13310,9 @@ export declare class ModifyBlockStatusRequest extends $tea.Model {
|
|
|
12802
13310
|
duration?: number;
|
|
12803
13311
|
/**
|
|
12804
13312
|
* @remarks
|
|
12805
|
-
* The ID of the Anti-DDoS
|
|
13313
|
+
* The ID of the Anti-DDoS Proxy (Chinese Mainland) instance to manage.
|
|
12806
13314
|
*
|
|
12807
|
-
* >
|
|
13315
|
+
* > You can call the [DescribeInstanceIds](https://help.aliyun.com/document_detail/157459.html) operation to query the IDs of all Anti-DDoS Proxy instances.
|
|
12808
13316
|
*
|
|
12809
13317
|
* This parameter is required.
|
|
12810
13318
|
*
|
|
@@ -13730,9 +14238,34 @@ export declare class ModifyInstanceRemarkResponse extends $tea.Model {
|
|
|
13730
14238
|
export declare class ModifyNetworkRuleAttributeRequest extends $tea.Model {
|
|
13731
14239
|
/**
|
|
13732
14240
|
* @remarks
|
|
13733
|
-
* The
|
|
14241
|
+
* The detailed settings of the port forwarding rule. This parameter is a JSON string and contains the following fields. The detailed settings of a TCP port forwarding rule contain the following fields.
|
|
14242
|
+
*
|
|
14243
|
+
* * **PersistenceTimeout**: the timeout period of session persistence. This field is required and of the integer type. Valid values: **30** to **3600**. Unit: seconds. Default value: **0**, which indicates that session persistence is disabled.
|
|
14244
|
+
* * **Synproxy**: specifies whether to enable the false source feature in the DDoS mitigation policy. This field is required and of the string type. Valid values: off and on.
|
|
14245
|
+
* * **NodataConn**: specifies whether to enable the empty connection feature in the DDoS mitigation policy. This field is required and of the string type. Valid values: off and on.
|
|
14246
|
+
* * **Sla**: the settings of the speed limit for destination feature. This field is required and of the struct type. For more information, see the following description about Sla.
|
|
14247
|
+
* * **Slimit**: the settings of the rate limit for source feature. This field is required and of the struct type. For more information, see the following description about Slimit.
|
|
14248
|
+
* * **PayloadLen**: the settings of the packet length limit feature. This field is required and of the struct type. For more information, see the following description about PayloadLen.
|
|
14249
|
+
*
|
|
14250
|
+
* Sla contains the following fields:
|
|
13734
14251
|
*
|
|
13735
|
-
* * **
|
|
14252
|
+
* * **Cps**: the destination rate limit on new connections in the DDoS mitigation policy. This field is required and of the integer type. Valid values: 100 to 100000.
|
|
14253
|
+
* * **Maxconn**: the destination rate limit on concurrent connections in the DDoS mitigation policy. This field is required and of the integer type. Valid values: 1000 to 1000000.
|
|
14254
|
+
* * **CpsEnable**: specifies whether to enable Cps. This field is required and of the integer type. Valid values: 0 and 1. Default value: 1. The value 0 indicates that Cps is disabled, and the value 1 indicates that Cps is enabled.
|
|
14255
|
+
* * **MaxconnEnable**: specifies whether to enable Maxconn. This field is required and of the integer type. Valid values: 0 and 1. Default value: 1. The value 0 indicates that Maxconn is disabled, and the value 1 indicates that Maxconn is enabled.
|
|
14256
|
+
*
|
|
14257
|
+
* Slimit contains the following fields:
|
|
14258
|
+
*
|
|
14259
|
+
* * **Cps**: the source rate limit on new connections in the DDoS mitigation policy. This field is required and of the integer type. Valid values: 1 to 50000.
|
|
14260
|
+
* * **Maxconn**: the source rate limit on concurrent connections in the DDoS mitigation policy. This field is required and of the integer type. Valid values: 1 to 50000.
|
|
14261
|
+
* * **CpsEnable**: specifies whether to enable Cps. This field is required and of the integer type. Valid values: 0 and 1. Default value: 1. The value 0 indicates that Cps is disabled, and the value 1 indicates that Cps is enabled.
|
|
14262
|
+
* * **MaxconnEnable**: specifies whether to enable Maxconn. This field is required and of the integer type. Valid values: 0 and 1. Default value: 1. The value 0 indicates that Maxconn is disabled, and the value 1 indicates that Maxconn is enabled.
|
|
14263
|
+
* * **CpsMode**: specifies whether to enable the source rate limit on new connections. This field is required and of the integer type. Valid values: 1 and 2. The value 1 indicates that the source rate limit is disabled. The value 2 indicates that the system determines whether to enable the source rate limit.
|
|
14264
|
+
*
|
|
14265
|
+
* PayloadLen contains the following fields:
|
|
14266
|
+
*
|
|
14267
|
+
* * **Min**: the minimum packet length in the DDoS mitigation policy. This field is required and of the integer type. Valid values: 0 to 1500.
|
|
14268
|
+
* * **Max**: the maximum packet length in the DDoS mitigation policy. This field is required and of the integer type. Valid values: 0 to 1500.
|
|
13736
14269
|
*
|
|
13737
14270
|
* This parameter is required.
|
|
13738
14271
|
*
|
|
@@ -13788,7 +14321,7 @@ export declare class ModifyNetworkRuleAttributeRequest extends $tea.Model {
|
|
|
13788
14321
|
export declare class ModifyNetworkRuleAttributeResponseBody extends $tea.Model {
|
|
13789
14322
|
/**
|
|
13790
14323
|
* @remarks
|
|
13791
|
-
* The ID
|
|
14324
|
+
* The request ID.
|
|
13792
14325
|
*
|
|
13793
14326
|
* @example
|
|
13794
14327
|
* 0bcf28g5-d57c-11e7-9bs0-d89d6717dxbc
|
|
@@ -13911,7 +14444,7 @@ export declare class ModifyPortRequest extends $tea.Model {
|
|
|
13911
14444
|
frontendPort?: string;
|
|
13912
14445
|
/**
|
|
13913
14446
|
* @remarks
|
|
13914
|
-
* The type of the protocol. Valid values:
|
|
14447
|
+
* The type of the forwarding protocol. Valid values:
|
|
13915
14448
|
*
|
|
13916
14449
|
* * **tcp**
|
|
13917
14450
|
* * **udp**
|
|
@@ -14040,7 +14573,7 @@ export declare class ModifyPortAutoCcStatusRequest extends $tea.Model {
|
|
|
14040
14573
|
export declare class ModifyPortAutoCcStatusResponseBody extends $tea.Model {
|
|
14041
14574
|
/**
|
|
14042
14575
|
* @remarks
|
|
14043
|
-
* The ID
|
|
14576
|
+
* The request ID.
|
|
14044
14577
|
*
|
|
14045
14578
|
* @example
|
|
14046
14579
|
* 0bcf28g5-d57c-11e7-9bs0-d89d6717dxbc
|
|
@@ -16863,6 +17396,58 @@ export declare class DescribeDomainAttackEventsResponseBodyDomainAttackEvents ex
|
|
|
16863
17396
|
[key: string]: any;
|
|
16864
17397
|
});
|
|
16865
17398
|
}
|
|
17399
|
+
export declare class DescribeDomainBpsResponseBodyDomainBps extends $tea.Model {
|
|
17400
|
+
/**
|
|
17401
|
+
* @example
|
|
17402
|
+
* 0
|
|
17403
|
+
*/
|
|
17404
|
+
inBps?: number;
|
|
17405
|
+
/**
|
|
17406
|
+
* @example
|
|
17407
|
+
* 1
|
|
17408
|
+
*/
|
|
17409
|
+
index?: number;
|
|
17410
|
+
/**
|
|
17411
|
+
* @example
|
|
17412
|
+
* 0
|
|
17413
|
+
*/
|
|
17414
|
+
outBps?: number;
|
|
17415
|
+
static names(): {
|
|
17416
|
+
[key: string]: string;
|
|
17417
|
+
};
|
|
17418
|
+
static types(): {
|
|
17419
|
+
[key: string]: any;
|
|
17420
|
+
};
|
|
17421
|
+
constructor(map?: {
|
|
17422
|
+
[key: string]: any;
|
|
17423
|
+
});
|
|
17424
|
+
}
|
|
17425
|
+
export declare class DescribeDomainH2FingerprintResponseBodyDomainH2Fp extends $tea.Model {
|
|
17426
|
+
/**
|
|
17427
|
+
* @example
|
|
17428
|
+
* example.aliyundoc.com
|
|
17429
|
+
*/
|
|
17430
|
+
domain?: string;
|
|
17431
|
+
/**
|
|
17432
|
+
* @example
|
|
17433
|
+
* 532501bc316d02c8b1a007db76f2c796
|
|
17434
|
+
*/
|
|
17435
|
+
h2Fingerprint?: string;
|
|
17436
|
+
/**
|
|
17437
|
+
* @example
|
|
17438
|
+
* 471755
|
|
17439
|
+
*/
|
|
17440
|
+
pv?: number;
|
|
17441
|
+
static names(): {
|
|
17442
|
+
[key: string]: string;
|
|
17443
|
+
};
|
|
17444
|
+
static types(): {
|
|
17445
|
+
[key: string]: any;
|
|
17446
|
+
};
|
|
17447
|
+
constructor(map?: {
|
|
17448
|
+
[key: string]: any;
|
|
17449
|
+
});
|
|
17450
|
+
}
|
|
16866
17451
|
export declare class DescribeDomainQPSListResponseBodyDomainQPSList extends $tea.Model {
|
|
16867
17452
|
/**
|
|
16868
17453
|
* @remarks
|
|
@@ -17348,29 +17933,142 @@ export declare class DescribeDomainStatusCodeListResponseBodyStatusCodeList exte
|
|
|
17348
17933
|
*/
|
|
17349
17934
|
status503?: number;
|
|
17350
17935
|
/**
|
|
17351
|
-
* @remarks
|
|
17352
|
-
* The number of 504 status codes.
|
|
17353
|
-
*
|
|
17936
|
+
* @remarks
|
|
17937
|
+
* The number of 504 status codes.
|
|
17938
|
+
*
|
|
17939
|
+
* @example
|
|
17940
|
+
* 0
|
|
17941
|
+
*/
|
|
17942
|
+
status504?: number;
|
|
17943
|
+
/**
|
|
17944
|
+
* @remarks
|
|
17945
|
+
* The number of 5xx status codes.
|
|
17946
|
+
*
|
|
17947
|
+
* @example
|
|
17948
|
+
* 0
|
|
17949
|
+
*/
|
|
17950
|
+
status5XX?: number;
|
|
17951
|
+
/**
|
|
17952
|
+
* @remarks
|
|
17953
|
+
* The time when the data was collected. The value is a UNIX timestamp. Unit: seconds.
|
|
17954
|
+
*
|
|
17955
|
+
* @example
|
|
17956
|
+
* 1582992000
|
|
17957
|
+
*/
|
|
17958
|
+
time?: number;
|
|
17959
|
+
static names(): {
|
|
17960
|
+
[key: string]: string;
|
|
17961
|
+
};
|
|
17962
|
+
static types(): {
|
|
17963
|
+
[key: string]: any;
|
|
17964
|
+
};
|
|
17965
|
+
constructor(map?: {
|
|
17966
|
+
[key: string]: any;
|
|
17967
|
+
});
|
|
17968
|
+
}
|
|
17969
|
+
export declare class DescribeDomainTopAttackListResponseBodyAttackList extends $tea.Model {
|
|
17970
|
+
/**
|
|
17971
|
+
* @remarks
|
|
17972
|
+
* The attack QPS. Unit: QPS
|
|
17973
|
+
*
|
|
17974
|
+
* @example
|
|
17975
|
+
* 0
|
|
17976
|
+
*/
|
|
17977
|
+
attack?: number;
|
|
17978
|
+
/**
|
|
17979
|
+
* @remarks
|
|
17980
|
+
* The number of all QPS, which includes normal and attack QPS. Unit: QPS.
|
|
17981
|
+
*
|
|
17982
|
+
* @example
|
|
17983
|
+
* 294
|
|
17984
|
+
*/
|
|
17985
|
+
count?: number;
|
|
17986
|
+
/**
|
|
17987
|
+
* @remarks
|
|
17988
|
+
* The domain name of the website.
|
|
17989
|
+
*
|
|
17990
|
+
* @example
|
|
17991
|
+
* www.aliyun.com
|
|
17992
|
+
*/
|
|
17993
|
+
domain?: string;
|
|
17994
|
+
static names(): {
|
|
17995
|
+
[key: string]: string;
|
|
17996
|
+
};
|
|
17997
|
+
static types(): {
|
|
17998
|
+
[key: string]: any;
|
|
17999
|
+
};
|
|
18000
|
+
constructor(map?: {
|
|
18001
|
+
[key: string]: any;
|
|
18002
|
+
});
|
|
18003
|
+
}
|
|
18004
|
+
export declare class DescribeDomainTopFingerprintResponseBodyDomainTopFp extends $tea.Model {
|
|
18005
|
+
/**
|
|
18006
|
+
* @example
|
|
18007
|
+
* example.aliyundoc.com
|
|
18008
|
+
*/
|
|
18009
|
+
domain?: string;
|
|
18010
|
+
/**
|
|
18011
|
+
* @example
|
|
18012
|
+
* 8a374c9724582b14a4cfa58c8c9fb2bc
|
|
18013
|
+
*/
|
|
18014
|
+
fingerprinting?: string;
|
|
18015
|
+
/**
|
|
18016
|
+
* @example
|
|
18017
|
+
* 22121
|
|
18018
|
+
*/
|
|
18019
|
+
pv?: number;
|
|
18020
|
+
static names(): {
|
|
18021
|
+
[key: string]: string;
|
|
18022
|
+
};
|
|
18023
|
+
static types(): {
|
|
18024
|
+
[key: string]: any;
|
|
18025
|
+
};
|
|
18026
|
+
constructor(map?: {
|
|
18027
|
+
[key: string]: any;
|
|
18028
|
+
});
|
|
18029
|
+
}
|
|
18030
|
+
export declare class DescribeDomainTopHttpMethodResponseBodyDomainTopMethod extends $tea.Model {
|
|
18031
|
+
/**
|
|
18032
|
+
* @example
|
|
18033
|
+
* example.aliyundoc.com
|
|
18034
|
+
*/
|
|
18035
|
+
domain?: string;
|
|
18036
|
+
/**
|
|
18037
|
+
* @example
|
|
18038
|
+
* GET
|
|
18039
|
+
*/
|
|
18040
|
+
httpMethod?: string;
|
|
18041
|
+
/**
|
|
18042
|
+
* @example
|
|
18043
|
+
* 22121
|
|
18044
|
+
*/
|
|
18045
|
+
pv?: number;
|
|
18046
|
+
static names(): {
|
|
18047
|
+
[key: string]: string;
|
|
18048
|
+
};
|
|
18049
|
+
static types(): {
|
|
18050
|
+
[key: string]: any;
|
|
18051
|
+
};
|
|
18052
|
+
constructor(map?: {
|
|
18053
|
+
[key: string]: any;
|
|
18054
|
+
});
|
|
18055
|
+
}
|
|
18056
|
+
export declare class DescribeDomainTopRefererResponseBodyDomainTopReferer extends $tea.Model {
|
|
18057
|
+
/**
|
|
17354
18058
|
* @example
|
|
17355
|
-
*
|
|
18059
|
+
* example.aliyundoc.com
|
|
17356
18060
|
*/
|
|
17357
|
-
|
|
18061
|
+
domain?: string;
|
|
17358
18062
|
/**
|
|
17359
|
-
* @remarks
|
|
17360
|
-
* The number of 5xx status codes.
|
|
17361
|
-
*
|
|
17362
18063
|
* @example
|
|
17363
|
-
*
|
|
18064
|
+
* 257031
|
|
17364
18065
|
*/
|
|
17365
|
-
|
|
18066
|
+
pv?: number;
|
|
17366
18067
|
/**
|
|
17367
|
-
* @remarks
|
|
17368
|
-
* The time when the data was collected. The value is a UNIX timestamp. Unit: seconds.
|
|
17369
|
-
*
|
|
17370
18068
|
* @example
|
|
17371
|
-
*
|
|
18069
|
+
* aHR0cHM6Ly9zZXJ2aWNld2VjaGF0LmNvbS93eGY3ZDc5YWY0YzU4ZDH3NTEvNC9wYWdlLWZyYW1lLmh0bWw=
|
|
17372
18070
|
*/
|
|
17373
|
-
|
|
18071
|
+
referer?: string;
|
|
17374
18072
|
static names(): {
|
|
17375
18073
|
[key: string]: string;
|
|
17376
18074
|
};
|
|
@@ -17381,31 +18079,22 @@ export declare class DescribeDomainStatusCodeListResponseBodyStatusCodeList exte
|
|
|
17381
18079
|
[key: string]: any;
|
|
17382
18080
|
});
|
|
17383
18081
|
}
|
|
17384
|
-
export declare class
|
|
18082
|
+
export declare class DescribeDomainTopUserAgentResponseBodyDomainTopUa extends $tea.Model {
|
|
17385
18083
|
/**
|
|
17386
|
-
* @remarks
|
|
17387
|
-
* The attack QPS. Unit: QPS
|
|
17388
|
-
*
|
|
17389
18084
|
* @example
|
|
17390
|
-
*
|
|
18085
|
+
* www.example.com
|
|
17391
18086
|
*/
|
|
17392
|
-
|
|
18087
|
+
domain?: string;
|
|
17393
18088
|
/**
|
|
17394
|
-
* @remarks
|
|
17395
|
-
* The number of all QPS, which includes normal and attack QPS. Unit: QPS.
|
|
17396
|
-
*
|
|
17397
18089
|
* @example
|
|
17398
|
-
*
|
|
18090
|
+
* 22121
|
|
17399
18091
|
*/
|
|
17400
|
-
|
|
18092
|
+
pv?: number;
|
|
17401
18093
|
/**
|
|
17402
|
-
* @remarks
|
|
17403
|
-
* The domain name of the website.
|
|
17404
|
-
*
|
|
17405
18094
|
* @example
|
|
17406
|
-
*
|
|
18095
|
+
* TW96aWxsYS81LjAgKFgxMTsgTGludXggeDg2XzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvOTYuMC40NjY0LjExMCACYWZhcmkvNTM3LjM2
|
|
17407
18096
|
*/
|
|
17408
|
-
|
|
18097
|
+
userAgent?: string;
|
|
17409
18098
|
static names(): {
|
|
17410
18099
|
[key: string]: string;
|
|
17411
18100
|
};
|
|
@@ -17742,7 +18431,7 @@ export declare class DescribeHealthCheckListResponseBodyHealthCheckListHealthChe
|
|
|
17742
18431
|
* @remarks
|
|
17743
18432
|
* The domain name.
|
|
17744
18433
|
*
|
|
17745
|
-
* >
|
|
18434
|
+
* > This parameter is returned only when the Layer 7 health check configuration is queried.
|
|
17746
18435
|
*
|
|
17747
18436
|
* @example
|
|
17748
18437
|
* www.aliyun.com
|
|
@@ -17803,7 +18492,7 @@ export declare class DescribeHealthCheckListResponseBodyHealthCheckListHealthChe
|
|
|
17803
18492
|
* @remarks
|
|
17804
18493
|
* The check path.
|
|
17805
18494
|
*
|
|
17806
|
-
* >
|
|
18495
|
+
* > This parameter is returned only when the Layer 7 health check configuration is queried.
|
|
17807
18496
|
*
|
|
17808
18497
|
* @example
|
|
17809
18498
|
* /abc
|
|
@@ -20591,6 +21280,13 @@ export declare class DescribeWebCCRulesV2ResponseBodyWebCCRulesRuleDetailConditi
|
|
|
20591
21280
|
* 192.0.XX.XX
|
|
20592
21281
|
*/
|
|
20593
21282
|
content?: string;
|
|
21283
|
+
/**
|
|
21284
|
+
* @remarks
|
|
21285
|
+
* The match content when the match method is Equals to One of Multiple Values.
|
|
21286
|
+
*
|
|
21287
|
+
* @example
|
|
21288
|
+
* ["2","3","ad"]
|
|
21289
|
+
*/
|
|
20594
21290
|
contentList?: string;
|
|
20595
21291
|
/**
|
|
20596
21292
|
* @remarks
|
|
@@ -21404,16 +22100,31 @@ export declare class DescribeWebReportTopIpResponseBodyDataList extends $tea.Mod
|
|
|
21404
22100
|
}
|
|
21405
22101
|
export declare class DescribeWebRulesResponseBodyWebRulesGmCert extends $tea.Model {
|
|
21406
22102
|
/**
|
|
22103
|
+
* @remarks
|
|
22104
|
+
* The ID of the SM certificate.
|
|
22105
|
+
*
|
|
21407
22106
|
* @example
|
|
21408
22107
|
* 725****
|
|
21409
22108
|
*/
|
|
21410
22109
|
certId?: string;
|
|
21411
22110
|
/**
|
|
22111
|
+
* @remarks
|
|
22112
|
+
* Indicates whether Enable SM Certificate-based Verification is turned on.
|
|
22113
|
+
*
|
|
22114
|
+
* * 0: no
|
|
22115
|
+
* * 1: yes
|
|
22116
|
+
*
|
|
21412
22117
|
* @example
|
|
21413
22118
|
* 1
|
|
21414
22119
|
*/
|
|
21415
22120
|
gmEnable?: number;
|
|
21416
22121
|
/**
|
|
22122
|
+
* @remarks
|
|
22123
|
+
* Indicates whether Allow Access Only from SM Certificates-based Clients is turned on.
|
|
22124
|
+
*
|
|
22125
|
+
* * 0: no
|
|
22126
|
+
* * 1: yes
|
|
22127
|
+
*
|
|
21417
22128
|
* @example
|
|
21418
22129
|
* 1
|
|
21419
22130
|
*/
|
|
@@ -21429,8 +22140,20 @@ export declare class DescribeWebRulesResponseBodyWebRulesGmCert extends $tea.Mod
|
|
|
21429
22140
|
});
|
|
21430
22141
|
}
|
|
21431
22142
|
export declare class DescribeWebRulesResponseBodyWebRulesProxyTypes extends $tea.Model {
|
|
22143
|
+
/**
|
|
22144
|
+
* @remarks
|
|
22145
|
+
* The ports.
|
|
22146
|
+
*/
|
|
21432
22147
|
proxyPorts?: string[];
|
|
21433
22148
|
/**
|
|
22149
|
+
* @remarks
|
|
22150
|
+
* The type of the protocol. Valid values:
|
|
22151
|
+
*
|
|
22152
|
+
* * **http**
|
|
22153
|
+
* * **https**
|
|
22154
|
+
* * **websocket**
|
|
22155
|
+
* * **websockets**
|
|
22156
|
+
*
|
|
21434
22157
|
* @example
|
|
21435
22158
|
* https
|
|
21436
22159
|
*/
|
|
@@ -21447,11 +22170,20 @@ export declare class DescribeWebRulesResponseBodyWebRulesProxyTypes extends $tea
|
|
|
21447
22170
|
}
|
|
21448
22171
|
export declare class DescribeWebRulesResponseBodyWebRulesRealServers extends $tea.Model {
|
|
21449
22172
|
/**
|
|
22173
|
+
* @remarks
|
|
22174
|
+
* The address of the origin server.
|
|
22175
|
+
*
|
|
21450
22176
|
* @example
|
|
21451
22177
|
* 192.0.XX.XX
|
|
21452
22178
|
*/
|
|
21453
22179
|
realServer?: string;
|
|
21454
22180
|
/**
|
|
22181
|
+
* @remarks
|
|
22182
|
+
* The type of the origin server address. Valid values:
|
|
22183
|
+
*
|
|
22184
|
+
* * **0**: IP address
|
|
22185
|
+
* * **1**: domain name The domain name of the origin server is returned if you deploy proxies, such as Web Application Firewall (WAF), between the origin server and the instance. In this case, the address of the proxy, such as the CNAME provided by WAF, is returned.
|
|
22186
|
+
*
|
|
21455
22187
|
* @example
|
|
21456
22188
|
* 0
|
|
21457
22189
|
*/
|
|
@@ -21467,97 +22199,239 @@ export declare class DescribeWebRulesResponseBodyWebRulesRealServers extends $te
|
|
|
21467
22199
|
});
|
|
21468
22200
|
}
|
|
21469
22201
|
export declare class DescribeWebRulesResponseBodyWebRules extends $tea.Model {
|
|
22202
|
+
/**
|
|
22203
|
+
* @remarks
|
|
22204
|
+
* The IP addresses in the blacklist for the domain name.
|
|
22205
|
+
*/
|
|
21470
22206
|
blackList?: string[];
|
|
21471
22207
|
/**
|
|
22208
|
+
* @remarks
|
|
22209
|
+
* Indicates whether the Frequency Control policy is enabled. Valid values:
|
|
22210
|
+
*
|
|
22211
|
+
* * **true**
|
|
22212
|
+
* * **false**
|
|
22213
|
+
*
|
|
21472
22214
|
* @example
|
|
21473
22215
|
* true
|
|
21474
22216
|
*/
|
|
21475
22217
|
ccEnabled?: boolean;
|
|
21476
22218
|
/**
|
|
22219
|
+
* @remarks
|
|
22220
|
+
* Indicates whether the Custom Rule switch of the Frequency Control policy is turned on. Valid values:
|
|
22221
|
+
*
|
|
22222
|
+
* * **true**
|
|
22223
|
+
* * **false**
|
|
22224
|
+
*
|
|
21477
22225
|
* @example
|
|
21478
22226
|
* false
|
|
21479
22227
|
*/
|
|
21480
22228
|
ccRuleEnabled?: boolean;
|
|
21481
22229
|
/**
|
|
22230
|
+
* @remarks
|
|
22231
|
+
* The mode of the Frequency Control policy. Valid values:
|
|
22232
|
+
*
|
|
22233
|
+
* * **default**: the Normal mode
|
|
22234
|
+
* * **gf_under_attack**: the Emergency mode
|
|
22235
|
+
* * **gf_sos_verify**: the Strict mode
|
|
22236
|
+
* * **gf_sos_verify**: the Super Strict mode
|
|
22237
|
+
*
|
|
21482
22238
|
* @example
|
|
21483
22239
|
* default
|
|
21484
22240
|
*/
|
|
21485
22241
|
ccTemplate?: string;
|
|
21486
22242
|
/**
|
|
22243
|
+
* @remarks
|
|
22244
|
+
* The name of the SSL certificate.
|
|
22245
|
+
*
|
|
21487
22246
|
* @example
|
|
21488
22247
|
* testcert
|
|
21489
22248
|
*/
|
|
21490
22249
|
certName?: string;
|
|
22250
|
+
/**
|
|
22251
|
+
* @remarks
|
|
22252
|
+
* The region where the certificate is used. Valid values:
|
|
22253
|
+
*
|
|
22254
|
+
* * cn-hangzhou (default): the Chinese mainland
|
|
22255
|
+
* * ap-southeast-1: outside the Chinese mainland
|
|
22256
|
+
*
|
|
22257
|
+
* @example
|
|
22258
|
+
* cn-hangzhou
|
|
22259
|
+
*/
|
|
21491
22260
|
certRegion?: string;
|
|
21492
22261
|
/**
|
|
22262
|
+
* @remarks
|
|
22263
|
+
* The CNAME provided by the Anti-DDoS Pro or Anti-DDoS Premium instance to which the domain name is added.
|
|
22264
|
+
*
|
|
21493
22265
|
* @example
|
|
21494
22266
|
* kzmk7b8tt351****.aliyunddos1014****
|
|
21495
22267
|
*/
|
|
21496
22268
|
cname?: string;
|
|
22269
|
+
/**
|
|
22270
|
+
* @remarks
|
|
22271
|
+
* The custom cipher suites.
|
|
22272
|
+
*/
|
|
21497
22273
|
customCiphers?: string[];
|
|
21498
22274
|
/**
|
|
22275
|
+
* @remarks
|
|
22276
|
+
* The domain name of the website.
|
|
22277
|
+
*
|
|
21499
22278
|
* @example
|
|
21500
22279
|
* example.com
|
|
21501
22280
|
*/
|
|
21502
22281
|
domain?: string;
|
|
22282
|
+
/**
|
|
22283
|
+
* @remarks
|
|
22284
|
+
* The SM certificate settings.
|
|
22285
|
+
*/
|
|
21503
22286
|
gmCert?: DescribeWebRulesResponseBodyWebRulesGmCert;
|
|
21504
22287
|
/**
|
|
22288
|
+
* @remarks
|
|
22289
|
+
* Indicates whether Enable HTTP/2 is turned on. Valid values:
|
|
22290
|
+
*
|
|
22291
|
+
* * **true**
|
|
22292
|
+
* * **false**
|
|
22293
|
+
*
|
|
21505
22294
|
* @example
|
|
21506
22295
|
* true
|
|
21507
22296
|
*/
|
|
21508
22297
|
http2Enable?: boolean;
|
|
21509
22298
|
/**
|
|
22299
|
+
* @remarks
|
|
22300
|
+
* Indicates whether Enable HTTPS Redirection was turned on. Valid values:
|
|
22301
|
+
*
|
|
22302
|
+
* * **true**
|
|
22303
|
+
* * **false**
|
|
22304
|
+
*
|
|
21510
22305
|
* @example
|
|
21511
22306
|
* true
|
|
21512
22307
|
*/
|
|
21513
22308
|
http2HttpsEnable?: boolean;
|
|
21514
22309
|
/**
|
|
22310
|
+
* @remarks
|
|
22311
|
+
* Indicates whether Enable HTTP Redirection of Back-to-origin Requests is turned on. Valid values:
|
|
22312
|
+
*
|
|
22313
|
+
* * **true**
|
|
22314
|
+
* * **false**
|
|
22315
|
+
*
|
|
21515
22316
|
* @example
|
|
21516
22317
|
* true
|
|
21517
22318
|
*/
|
|
21518
22319
|
https2HttpEnable?: boolean;
|
|
21519
22320
|
/**
|
|
22321
|
+
* @remarks
|
|
22322
|
+
* Indicates whether the Online Certificate Status Protocol (OCSP) feature is enabled. Valid values:
|
|
22323
|
+
*
|
|
22324
|
+
* * **true**
|
|
22325
|
+
* * **false**
|
|
22326
|
+
*
|
|
21520
22327
|
* @example
|
|
21521
22328
|
* false
|
|
21522
22329
|
*/
|
|
21523
22330
|
ocspEnabled?: boolean;
|
|
21524
22331
|
/**
|
|
22332
|
+
* @remarks
|
|
22333
|
+
* The load balancing algorithm for back-to-origin traffic. Valid values:
|
|
22334
|
+
*
|
|
22335
|
+
* * **ip_hash**: the IP hash algorithm. This algorithm is used to redirect the requests from the same IP address to the same origin server.
|
|
22336
|
+
* * **rr**: the round-robin algorithm. This algorithm is used to redirect requests to origin servers in turn.
|
|
22337
|
+
* * **least_time**: the least response time algorithm. This algorithm is used to minimize the latency when requests are forwarded from Anti-DDoS Pro or Anti-DDoS Premium instances to origin servers based on the intelligent DNS resolution feature.
|
|
22338
|
+
*
|
|
21525
22339
|
* @example
|
|
21526
22340
|
* ip_hash
|
|
21527
22341
|
*/
|
|
21528
22342
|
policyMode?: string;
|
|
21529
22343
|
/**
|
|
22344
|
+
* @remarks
|
|
22345
|
+
* Indicates whether the forwarding rule is enabled. Valid values:
|
|
22346
|
+
*
|
|
22347
|
+
* * **true**
|
|
22348
|
+
* * **false**
|
|
22349
|
+
*
|
|
21530
22350
|
* @example
|
|
21531
22351
|
* true
|
|
21532
22352
|
*/
|
|
21533
22353
|
proxyEnabled?: boolean;
|
|
22354
|
+
/**
|
|
22355
|
+
* @remarks
|
|
22356
|
+
* The details of the protocol type and port number.
|
|
22357
|
+
*/
|
|
21534
22358
|
proxyTypes?: DescribeWebRulesResponseBodyWebRulesProxyTypes[];
|
|
21535
22359
|
/**
|
|
22360
|
+
* @remarks
|
|
22361
|
+
* The reason why the domain name is invalid. Valid values:
|
|
22362
|
+
*
|
|
22363
|
+
* * **1**: No Content Provider (ICP) filing is completed for the domain name.
|
|
22364
|
+
* * **2**: The business for which you registered the domain name does not meet regulatory requirements.
|
|
22365
|
+
*
|
|
22366
|
+
* If the two reasons are both involved, the value **2** is returned.
|
|
22367
|
+
*
|
|
21536
22368
|
* @example
|
|
21537
22369
|
* 1
|
|
21538
22370
|
*/
|
|
21539
22371
|
punishReason?: number;
|
|
21540
22372
|
/**
|
|
22373
|
+
* @remarks
|
|
22374
|
+
* Indicates whether the domain name is invalid. Valid values:
|
|
22375
|
+
*
|
|
22376
|
+
* * **true**: You can view the specific reasons from the **PunishReason** parameter.
|
|
22377
|
+
* * **false**
|
|
22378
|
+
*
|
|
21541
22379
|
* @example
|
|
21542
22380
|
* true
|
|
21543
22381
|
*/
|
|
21544
22382
|
punishStatus?: boolean;
|
|
22383
|
+
/**
|
|
22384
|
+
* @remarks
|
|
22385
|
+
* The details of the origin server address.
|
|
22386
|
+
*/
|
|
21545
22387
|
realServers?: DescribeWebRulesResponseBodyWebRulesRealServers[];
|
|
21546
22388
|
/**
|
|
22389
|
+
* @remarks
|
|
22390
|
+
* Indicates whether TLS 1.3 is supported. Valid values:
|
|
22391
|
+
*
|
|
22392
|
+
* * **true**
|
|
22393
|
+
* * **false**
|
|
22394
|
+
*
|
|
21547
22395
|
* @example
|
|
21548
22396
|
* false
|
|
21549
22397
|
*/
|
|
21550
22398
|
ssl13Enabled?: boolean;
|
|
21551
22399
|
/**
|
|
22400
|
+
* @remarks
|
|
22401
|
+
* The type of the cipher suite. Valid values:
|
|
22402
|
+
*
|
|
22403
|
+
* * **default**: custom cipher suites
|
|
22404
|
+
* * **all**: all cipher suites, which contain strong and weak cipher suites
|
|
22405
|
+
* * **strong**: strong cipher suites
|
|
22406
|
+
*
|
|
21552
22407
|
* @example
|
|
21553
22408
|
* default
|
|
21554
22409
|
*/
|
|
21555
22410
|
sslCiphers?: string;
|
|
21556
22411
|
/**
|
|
22412
|
+
* @remarks
|
|
22413
|
+
* The version of the Transport Layer Security (TLS) protocol. Valid values:
|
|
22414
|
+
*
|
|
22415
|
+
* * **tls1.0**: TLS 1.0 or later
|
|
22416
|
+
* * **tls1.1**: TLS 1.1 or later
|
|
22417
|
+
* * **tls1.2**: TLS 1.2 or later
|
|
22418
|
+
*
|
|
21557
22419
|
* @example
|
|
21558
22420
|
* tls1.1
|
|
21559
22421
|
*/
|
|
21560
22422
|
sslProtocols?: string;
|
|
22423
|
+
/**
|
|
22424
|
+
* @remarks
|
|
22425
|
+
* The name of the certificate uploaded by the user to the certificate center.
|
|
22426
|
+
*
|
|
22427
|
+
* @example
|
|
22428
|
+
* test
|
|
22429
|
+
*/
|
|
22430
|
+
userCertName?: string;
|
|
22431
|
+
/**
|
|
22432
|
+
* @remarks
|
|
22433
|
+
* The IP addresses in the whitelist for the domain name.
|
|
22434
|
+
*/
|
|
21561
22435
|
whiteList?: string[];
|
|
21562
22436
|
static names(): {
|
|
21563
22437
|
[key: string]: string;
|
|
@@ -22670,6 +23544,36 @@ export default class Client extends OpenApi {
|
|
|
22670
23544
|
* @returns DescribeDomainAttackEventsResponse
|
|
22671
23545
|
*/
|
|
22672
23546
|
describeDomainAttackEvents(request: DescribeDomainAttackEventsRequest): Promise<DescribeDomainAttackEventsResponse>;
|
|
23547
|
+
/**
|
|
23548
|
+
* 查询域名业务带宽流量
|
|
23549
|
+
*
|
|
23550
|
+
* @param request - DescribeDomainBpsRequest
|
|
23551
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23552
|
+
* @returns DescribeDomainBpsResponse
|
|
23553
|
+
*/
|
|
23554
|
+
describeDomainBpsWithOptions(request: DescribeDomainBpsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainBpsResponse>;
|
|
23555
|
+
/**
|
|
23556
|
+
* 查询域名业务带宽流量
|
|
23557
|
+
*
|
|
23558
|
+
* @param request - DescribeDomainBpsRequest
|
|
23559
|
+
* @returns DescribeDomainBpsResponse
|
|
23560
|
+
*/
|
|
23561
|
+
describeDomainBps(request: DescribeDomainBpsRequest): Promise<DescribeDomainBpsResponse>;
|
|
23562
|
+
/**
|
|
23563
|
+
* 查询HTTP2指纹
|
|
23564
|
+
*
|
|
23565
|
+
* @param request - DescribeDomainH2FingerprintRequest
|
|
23566
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23567
|
+
* @returns DescribeDomainH2FingerprintResponse
|
|
23568
|
+
*/
|
|
23569
|
+
describeDomainH2FingerprintWithOptions(request: DescribeDomainH2FingerprintRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainH2FingerprintResponse>;
|
|
23570
|
+
/**
|
|
23571
|
+
* 查询HTTP2指纹
|
|
23572
|
+
*
|
|
23573
|
+
* @param request - DescribeDomainH2FingerprintRequest
|
|
23574
|
+
* @returns DescribeDomainH2FingerprintResponse
|
|
23575
|
+
*/
|
|
23576
|
+
describeDomainH2Fingerprint(request: DescribeDomainH2FingerprintRequest): Promise<DescribeDomainH2FingerprintResponse>;
|
|
22673
23577
|
/**
|
|
22674
23578
|
* Queries the attack overview of a website, such as the peak HTTP and HTTPS traffic.
|
|
22675
23579
|
*
|
|
@@ -22787,6 +23691,66 @@ export default class Client extends OpenApi {
|
|
|
22787
23691
|
* @returns DescribeDomainTopAttackListResponse
|
|
22788
23692
|
*/
|
|
22789
23693
|
describeDomainTopAttackList(request: DescribeDomainTopAttackListRequest): Promise<DescribeDomainTopAttackListResponse>;
|
|
23694
|
+
/**
|
|
23695
|
+
* 查询域名 top fingerprint
|
|
23696
|
+
*
|
|
23697
|
+
* @param request - DescribeDomainTopFingerprintRequest
|
|
23698
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23699
|
+
* @returns DescribeDomainTopFingerprintResponse
|
|
23700
|
+
*/
|
|
23701
|
+
describeDomainTopFingerprintWithOptions(request: DescribeDomainTopFingerprintRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainTopFingerprintResponse>;
|
|
23702
|
+
/**
|
|
23703
|
+
* 查询域名 top fingerprint
|
|
23704
|
+
*
|
|
23705
|
+
* @param request - DescribeDomainTopFingerprintRequest
|
|
23706
|
+
* @returns DescribeDomainTopFingerprintResponse
|
|
23707
|
+
*/
|
|
23708
|
+
describeDomainTopFingerprint(request: DescribeDomainTopFingerprintRequest): Promise<DescribeDomainTopFingerprintResponse>;
|
|
23709
|
+
/**
|
|
23710
|
+
* 查询域名 top HttpMethod
|
|
23711
|
+
*
|
|
23712
|
+
* @param request - DescribeDomainTopHttpMethodRequest
|
|
23713
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23714
|
+
* @returns DescribeDomainTopHttpMethodResponse
|
|
23715
|
+
*/
|
|
23716
|
+
describeDomainTopHttpMethodWithOptions(request: DescribeDomainTopHttpMethodRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainTopHttpMethodResponse>;
|
|
23717
|
+
/**
|
|
23718
|
+
* 查询域名 top HttpMethod
|
|
23719
|
+
*
|
|
23720
|
+
* @param request - DescribeDomainTopHttpMethodRequest
|
|
23721
|
+
* @returns DescribeDomainTopHttpMethodResponse
|
|
23722
|
+
*/
|
|
23723
|
+
describeDomainTopHttpMethod(request: DescribeDomainTopHttpMethodRequest): Promise<DescribeDomainTopHttpMethodResponse>;
|
|
23724
|
+
/**
|
|
23725
|
+
* 查询域名top referer
|
|
23726
|
+
*
|
|
23727
|
+
* @param request - DescribeDomainTopRefererRequest
|
|
23728
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23729
|
+
* @returns DescribeDomainTopRefererResponse
|
|
23730
|
+
*/
|
|
23731
|
+
describeDomainTopRefererWithOptions(request: DescribeDomainTopRefererRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainTopRefererResponse>;
|
|
23732
|
+
/**
|
|
23733
|
+
* 查询域名top referer
|
|
23734
|
+
*
|
|
23735
|
+
* @param request - DescribeDomainTopRefererRequest
|
|
23736
|
+
* @returns DescribeDomainTopRefererResponse
|
|
23737
|
+
*/
|
|
23738
|
+
describeDomainTopReferer(request: DescribeDomainTopRefererRequest): Promise<DescribeDomainTopRefererResponse>;
|
|
23739
|
+
/**
|
|
23740
|
+
* 查询top user agent
|
|
23741
|
+
*
|
|
23742
|
+
* @param request - DescribeDomainTopUserAgentRequest
|
|
23743
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23744
|
+
* @returns DescribeDomainTopUserAgentResponse
|
|
23745
|
+
*/
|
|
23746
|
+
describeDomainTopUserAgentWithOptions(request: DescribeDomainTopUserAgentRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainTopUserAgentResponse>;
|
|
23747
|
+
/**
|
|
23748
|
+
* 查询top user agent
|
|
23749
|
+
*
|
|
23750
|
+
* @param request - DescribeDomainTopUserAgentRequest
|
|
23751
|
+
* @returns DescribeDomainTopUserAgentResponse
|
|
23752
|
+
*/
|
|
23753
|
+
describeDomainTopUserAgent(request: DescribeDomainTopUserAgentRequest): Promise<DescribeDomainTopUserAgentResponse>;
|
|
22790
23754
|
/**
|
|
22791
23755
|
* Queries the areas and countries from which requests are sent to a website within a specified period of time.
|
|
22792
23756
|
*
|
|
@@ -22863,10 +23827,10 @@ export default class Client extends OpenApi {
|
|
|
22863
23827
|
*/
|
|
22864
23828
|
describeDomains(request: DescribeDomainsRequest): Promise<DescribeDomainsResponse>;
|
|
22865
23829
|
/**
|
|
22866
|
-
* Queries the available burstable protection bandwidths of an Anti-DDoS
|
|
23830
|
+
* Queries the available burstable protection bandwidths of an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
22867
23831
|
*
|
|
22868
23832
|
* @remarks
|
|
22869
|
-
* >
|
|
23833
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
22870
23834
|
*
|
|
22871
23835
|
* @param request - DescribeElasticBandwidthSpecRequest
|
|
22872
23836
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -22874,10 +23838,10 @@ export default class Client extends OpenApi {
|
|
|
22874
23838
|
*/
|
|
22875
23839
|
describeElasticBandwidthSpecWithOptions(request: DescribeElasticBandwidthSpecRequest, runtime: $Util.RuntimeOptions): Promise<DescribeElasticBandwidthSpecResponse>;
|
|
22876
23840
|
/**
|
|
22877
|
-
* Queries the available burstable protection bandwidths of an Anti-DDoS
|
|
23841
|
+
* Queries the available burstable protection bandwidths of an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
22878
23842
|
*
|
|
22879
23843
|
* @remarks
|
|
22880
|
-
* >
|
|
23844
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
22881
23845
|
*
|
|
22882
23846
|
* @param request - DescribeElasticBandwidthSpecRequest
|
|
22883
23847
|
* @returns DescribeElasticBandwidthSpecResponse
|
|
@@ -23681,10 +24645,10 @@ export default class Client extends OpenApi {
|
|
|
23681
24645
|
*/
|
|
23682
24646
|
describeUnBlackholeCount(request: DescribeUnBlackholeCountRequest): Promise<DescribeUnBlackholeCountResponse>;
|
|
23683
24647
|
/**
|
|
23684
|
-
* Queries the remaining
|
|
24648
|
+
* Queries the total number and the remaining number of times that you can enable the near-origin traffic diversion feature.
|
|
23685
24649
|
*
|
|
23686
24650
|
* @remarks
|
|
23687
|
-
* >
|
|
24651
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
23688
24652
|
*
|
|
23689
24653
|
* @param request - DescribeUnBlockCountRequest
|
|
23690
24654
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23692,10 +24656,10 @@ export default class Client extends OpenApi {
|
|
|
23692
24656
|
*/
|
|
23693
24657
|
describeUnBlockCountWithOptions(request: DescribeUnBlockCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUnBlockCountResponse>;
|
|
23694
24658
|
/**
|
|
23695
|
-
* Queries the remaining
|
|
24659
|
+
* Queries the total number and the remaining number of times that you can enable the near-origin traffic diversion feature.
|
|
23696
24660
|
*
|
|
23697
24661
|
* @remarks
|
|
23698
|
-
* >
|
|
24662
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
23699
24663
|
*
|
|
23700
24664
|
* @param request - DescribeUnBlockCountRequest
|
|
23701
24665
|
* @returns DescribeUnBlockCountResponse
|
|
@@ -23921,9 +24885,13 @@ export default class Client extends OpenApi {
|
|
|
23921
24885
|
*/
|
|
23922
24886
|
describeWebReportTopIp(request: DescribeWebReportTopIpRequest): Promise<DescribeWebReportTopIpResponse>;
|
|
23923
24887
|
/**
|
|
23924
|
-
*
|
|
23925
|
-
*
|
|
23926
|
-
*
|
|
24888
|
+
* Query Configuration of Website Business Forwarding Rules.
|
|
24889
|
+
*
|
|
24890
|
+
* @remarks
|
|
24891
|
+
* This interface is used for paginated querying of the configurations of website business forwarding rules you have created, such as forwarding protocol types, source server addresses, HTTPS configurations, IP blacklist configurations, and more.
|
|
24892
|
+
* Before calling this interface, you must have already called [CreateWebRule](~~CreateWebRule~~) to create website business forwarding rules.
|
|
24893
|
+
* ### QPS Limit
|
|
24894
|
+
* The per-user QPS limit for this interface is 50 times/second. Exceeding this limit will result in API calls being throttled, which may impact your business; please use it reasonably.
|
|
23927
24895
|
*
|
|
23928
24896
|
* @param request - DescribeWebRulesRequest
|
|
23929
24897
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23931,9 +24899,13 @@ export default class Client extends OpenApi {
|
|
|
23931
24899
|
*/
|
|
23932
24900
|
describeWebRulesWithOptions(request: DescribeWebRulesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeWebRulesResponse>;
|
|
23933
24901
|
/**
|
|
23934
|
-
*
|
|
23935
|
-
*
|
|
23936
|
-
*
|
|
24902
|
+
* Query Configuration of Website Business Forwarding Rules.
|
|
24903
|
+
*
|
|
24904
|
+
* @remarks
|
|
24905
|
+
* This interface is used for paginated querying of the configurations of website business forwarding rules you have created, such as forwarding protocol types, source server addresses, HTTPS configurations, IP blacklist configurations, and more.
|
|
24906
|
+
* Before calling this interface, you must have already called [CreateWebRule](~~CreateWebRule~~) to create website business forwarding rules.
|
|
24907
|
+
* ### QPS Limit
|
|
24908
|
+
* The per-user QPS limit for this interface is 50 times/second. Exceeding this limit will result in API calls being throttled, which may impact your business; please use it reasonably.
|
|
23937
24909
|
*
|
|
23938
24910
|
* @param request - DescribeWebRulesRequest
|
|
23939
24911
|
* @returns DescribeWebRulesResponse
|
|
@@ -24357,7 +25329,7 @@ export default class Client extends OpenApi {
|
|
|
24357
25329
|
*/
|
|
24358
25330
|
modifyInstanceRemark(request: ModifyInstanceRemarkRequest): Promise<ModifyInstanceRemarkResponse>;
|
|
24359
25331
|
/**
|
|
24360
|
-
* Modifies the session persistence settings of a port forwarding rule.
|
|
25332
|
+
* Modifies the session persistence and DDoS mitigation policy settings of a port forwarding rule.
|
|
24361
25333
|
*
|
|
24362
25334
|
* @param request - ModifyNetworkRuleAttributeRequest
|
|
24363
25335
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24365,7 +25337,7 @@ export default class Client extends OpenApi {
|
|
|
24365
25337
|
*/
|
|
24366
25338
|
modifyNetworkRuleAttributeWithOptions(request: ModifyNetworkRuleAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNetworkRuleAttributeResponse>;
|
|
24367
25339
|
/**
|
|
24368
|
-
* Modifies the session persistence settings of a port forwarding rule.
|
|
25340
|
+
* Modifies the session persistence and DDoS mitigation policy settings of a port forwarding rule.
|
|
24369
25341
|
*
|
|
24370
25342
|
* @param request - ModifyNetworkRuleAttributeRequest
|
|
24371
25343
|
* @returns ModifyNetworkRuleAttributeResponse
|
|
@@ -24678,7 +25650,7 @@ export default class Client extends OpenApi {
|
|
|
24678
25650
|
*/
|
|
24679
25651
|
modifyWebIpSetSwitch(request: ModifyWebIpSetSwitchRequest): Promise<ModifyWebIpSetSwitchResponse>;
|
|
24680
25652
|
/**
|
|
24681
|
-
*
|
|
25653
|
+
* Creates or modifies an accurate access control rule of a website.
|
|
24682
25654
|
*
|
|
24683
25655
|
* @param request - ModifyWebPreciseAccessRuleRequest
|
|
24684
25656
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24686,7 +25658,7 @@ export default class Client extends OpenApi {
|
|
|
24686
25658
|
*/
|
|
24687
25659
|
modifyWebPreciseAccessRuleWithOptions(request: ModifyWebPreciseAccessRuleRequest, runtime: $Util.RuntimeOptions): Promise<ModifyWebPreciseAccessRuleResponse>;
|
|
24688
25660
|
/**
|
|
24689
|
-
*
|
|
25661
|
+
* Creates or modifies an accurate access control rule of a website.
|
|
24690
25662
|
*
|
|
24691
25663
|
* @param request - ModifyWebPreciseAccessRuleRequest
|
|
24692
25664
|
* @returns ModifyWebPreciseAccessRuleResponse
|