@alicloud/ddoscoo20200101 2.3.1 → 2.4.1
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 +217 -106
- package/dist/client.js +302 -117
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +322 -106
package/src/client.ts
CHANGED
|
@@ -3695,11 +3695,13 @@ export class DescribeDDosAllEventListResponse extends $tea.Model {
|
|
|
3695
3695
|
export class DescribeDDosEventAreaRequest extends $tea.Model {
|
|
3696
3696
|
eventType?: string;
|
|
3697
3697
|
ip?: string;
|
|
3698
|
+
range?: number;
|
|
3698
3699
|
startTime?: number;
|
|
3699
3700
|
static names(): { [key: string]: string } {
|
|
3700
3701
|
return {
|
|
3701
3702
|
eventType: 'EventType',
|
|
3702
3703
|
ip: 'Ip',
|
|
3704
|
+
range: 'Range',
|
|
3703
3705
|
startTime: 'StartTime',
|
|
3704
3706
|
};
|
|
3705
3707
|
}
|
|
@@ -3708,6 +3710,7 @@ export class DescribeDDosEventAreaRequest extends $tea.Model {
|
|
|
3708
3710
|
return {
|
|
3709
3711
|
eventType: 'string',
|
|
3710
3712
|
ip: 'string',
|
|
3713
|
+
range: 'number',
|
|
3711
3714
|
startTime: 'number',
|
|
3712
3715
|
};
|
|
3713
3716
|
}
|
|
@@ -3839,11 +3842,13 @@ export class DescribeDDosEventAttackTypeResponse extends $tea.Model {
|
|
|
3839
3842
|
export class DescribeDDosEventIspRequest extends $tea.Model {
|
|
3840
3843
|
eventType?: string;
|
|
3841
3844
|
ip?: string;
|
|
3845
|
+
range?: number;
|
|
3842
3846
|
startTime?: number;
|
|
3843
3847
|
static names(): { [key: string]: string } {
|
|
3844
3848
|
return {
|
|
3845
3849
|
eventType: 'EventType',
|
|
3846
3850
|
ip: 'Ip',
|
|
3851
|
+
range: 'Range',
|
|
3847
3852
|
startTime: 'StartTime',
|
|
3848
3853
|
};
|
|
3849
3854
|
}
|
|
@@ -3852,6 +3857,7 @@ export class DescribeDDosEventIspRequest extends $tea.Model {
|
|
|
3852
3857
|
return {
|
|
3853
3858
|
eventType: 'string',
|
|
3854
3859
|
ip: 'string',
|
|
3860
|
+
range: 'number',
|
|
3855
3861
|
startTime: 'number',
|
|
3856
3862
|
};
|
|
3857
3863
|
}
|
|
@@ -4208,6 +4214,84 @@ export class DescribeDefenseRecordsResponse extends $tea.Model {
|
|
|
4208
4214
|
}
|
|
4209
4215
|
}
|
|
4210
4216
|
|
|
4217
|
+
export class DescribeDestinationPortEventRequest extends $tea.Model {
|
|
4218
|
+
eventType?: string;
|
|
4219
|
+
ip?: string;
|
|
4220
|
+
range?: number;
|
|
4221
|
+
region?: string;
|
|
4222
|
+
startTime?: number;
|
|
4223
|
+
static names(): { [key: string]: string } {
|
|
4224
|
+
return {
|
|
4225
|
+
eventType: 'EventType',
|
|
4226
|
+
ip: 'Ip',
|
|
4227
|
+
range: 'Range',
|
|
4228
|
+
region: 'Region',
|
|
4229
|
+
startTime: 'StartTime',
|
|
4230
|
+
};
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
static types(): { [key: string]: any } {
|
|
4234
|
+
return {
|
|
4235
|
+
eventType: 'string',
|
|
4236
|
+
ip: 'string',
|
|
4237
|
+
range: 'number',
|
|
4238
|
+
region: 'string',
|
|
4239
|
+
startTime: 'number',
|
|
4240
|
+
};
|
|
4241
|
+
}
|
|
4242
|
+
|
|
4243
|
+
constructor(map?: { [key: string]: any }) {
|
|
4244
|
+
super(map);
|
|
4245
|
+
}
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
export class DescribeDestinationPortEventResponseBody extends $tea.Model {
|
|
4249
|
+
portList?: DescribeDestinationPortEventResponseBodyPortList[];
|
|
4250
|
+
requestId?: string;
|
|
4251
|
+
static names(): { [key: string]: string } {
|
|
4252
|
+
return {
|
|
4253
|
+
portList: 'PortList',
|
|
4254
|
+
requestId: 'RequestId',
|
|
4255
|
+
};
|
|
4256
|
+
}
|
|
4257
|
+
|
|
4258
|
+
static types(): { [key: string]: any } {
|
|
4259
|
+
return {
|
|
4260
|
+
portList: { 'type': 'array', 'itemType': DescribeDestinationPortEventResponseBodyPortList },
|
|
4261
|
+
requestId: 'string',
|
|
4262
|
+
};
|
|
4263
|
+
}
|
|
4264
|
+
|
|
4265
|
+
constructor(map?: { [key: string]: any }) {
|
|
4266
|
+
super(map);
|
|
4267
|
+
}
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
export class DescribeDestinationPortEventResponse extends $tea.Model {
|
|
4271
|
+
headers?: { [key: string]: string };
|
|
4272
|
+
statusCode?: number;
|
|
4273
|
+
body?: DescribeDestinationPortEventResponseBody;
|
|
4274
|
+
static names(): { [key: string]: string } {
|
|
4275
|
+
return {
|
|
4276
|
+
headers: 'headers',
|
|
4277
|
+
statusCode: 'statusCode',
|
|
4278
|
+
body: 'body',
|
|
4279
|
+
};
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
static types(): { [key: string]: any } {
|
|
4283
|
+
return {
|
|
4284
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4285
|
+
statusCode: 'number',
|
|
4286
|
+
body: DescribeDestinationPortEventResponseBody,
|
|
4287
|
+
};
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
constructor(map?: { [key: string]: any }) {
|
|
4291
|
+
super(map);
|
|
4292
|
+
}
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4211
4295
|
export class DescribeDomainAttackEventsRequest extends $tea.Model {
|
|
4212
4296
|
domain?: string;
|
|
4213
4297
|
endTime?: number;
|
|
@@ -13661,6 +13745,28 @@ export class DescribeDefenseRecordsResponseBodyDefenseRecords extends $tea.Model
|
|
|
13661
13745
|
}
|
|
13662
13746
|
}
|
|
13663
13747
|
|
|
13748
|
+
export class DescribeDestinationPortEventResponseBodyPortList extends $tea.Model {
|
|
13749
|
+
dstPort?: string;
|
|
13750
|
+
inPkts?: number;
|
|
13751
|
+
static names(): { [key: string]: string } {
|
|
13752
|
+
return {
|
|
13753
|
+
dstPort: 'DstPort',
|
|
13754
|
+
inPkts: 'InPkts',
|
|
13755
|
+
};
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13758
|
+
static types(): { [key: string]: any } {
|
|
13759
|
+
return {
|
|
13760
|
+
dstPort: 'string',
|
|
13761
|
+
inPkts: 'number',
|
|
13762
|
+
};
|
|
13763
|
+
}
|
|
13764
|
+
|
|
13765
|
+
constructor(map?: { [key: string]: any }) {
|
|
13766
|
+
super(map);
|
|
13767
|
+
}
|
|
13768
|
+
}
|
|
13769
|
+
|
|
13664
13770
|
export class DescribeDomainAttackEventsResponseBodyDomainAttackEvents extends $tea.Model {
|
|
13665
13771
|
domain?: string;
|
|
13666
13772
|
endTime?: number;
|
|
@@ -16721,7 +16827,7 @@ export default class Client extends OpenApi {
|
|
|
16721
16827
|
}
|
|
16722
16828
|
|
|
16723
16829
|
/**
|
|
16724
|
-
* @summary
|
|
16830
|
+
* @summary Configures the global mitigation policy feature, including the feature status and settings.
|
|
16725
16831
|
*
|
|
16726
16832
|
* @param request ConfigDomainSecurityProfileRequest
|
|
16727
16833
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -16760,7 +16866,7 @@ export default class Client extends OpenApi {
|
|
|
16760
16866
|
}
|
|
16761
16867
|
|
|
16762
16868
|
/**
|
|
16763
|
-
* @summary
|
|
16869
|
+
* @summary Configures the global mitigation policy feature, including the feature status and settings.
|
|
16764
16870
|
*
|
|
16765
16871
|
* @param request ConfigDomainSecurityProfileRequest
|
|
16766
16872
|
* @return ConfigDomainSecurityProfileResponse
|
|
@@ -16829,7 +16935,7 @@ export default class Client extends OpenApi {
|
|
|
16829
16935
|
}
|
|
16830
16936
|
|
|
16831
16937
|
/**
|
|
16832
|
-
* @summary
|
|
16938
|
+
* @summary Configures the settings for back-to-origin persistent connections for a domain name.
|
|
16833
16939
|
*
|
|
16834
16940
|
* @param request ConfigL7UsKeepaliveRequest
|
|
16835
16941
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -16864,7 +16970,7 @@ export default class Client extends OpenApi {
|
|
|
16864
16970
|
}
|
|
16865
16971
|
|
|
16866
16972
|
/**
|
|
16867
|
-
* @summary
|
|
16973
|
+
* @summary Configures the settings for back-to-origin persistent connections for a domain name.
|
|
16868
16974
|
*
|
|
16869
16975
|
* @param request ConfigL7UsKeepaliveRequest
|
|
16870
16976
|
* @return ConfigL7UsKeepaliveResponse
|
|
@@ -17051,7 +17157,7 @@ export default class Client extends OpenApi {
|
|
|
17051
17157
|
}
|
|
17052
17158
|
|
|
17053
17159
|
/**
|
|
17054
|
-
* @summary Configures blocked locations for an Anti-DDoS
|
|
17160
|
+
* @summary Configures blocked locations for an Anti-DDoS Proxy instance.
|
|
17055
17161
|
*
|
|
17056
17162
|
* @param request ConfigNetworkRegionBlockRequest
|
|
17057
17163
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -17086,7 +17192,7 @@ export default class Client extends OpenApi {
|
|
|
17086
17192
|
}
|
|
17087
17193
|
|
|
17088
17194
|
/**
|
|
17089
|
-
* @summary Configures blocked locations for an Anti-DDoS
|
|
17195
|
+
* @summary Configures blocked locations for an Anti-DDoS Proxy instance.
|
|
17090
17196
|
*
|
|
17091
17197
|
* @param request ConfigNetworkRegionBlockRequest
|
|
17092
17198
|
* @return ConfigNetworkRegionBlockResponse
|
|
@@ -17679,12 +17785,12 @@ export default class Client extends OpenApi {
|
|
|
17679
17785
|
}
|
|
17680
17786
|
|
|
17681
17787
|
/**
|
|
17682
|
-
* @summary Adds tags to multiple Anti-DDoS
|
|
17788
|
+
* @summary Adds tags to multiple Anti-DDoS Proxy (Chinese Mainland) instances at a time.
|
|
17683
17789
|
*
|
|
17684
|
-
* @description You can call the CreateTagResources operation to add a tag to multiple Anti-DDoS
|
|
17685
|
-
* >
|
|
17686
|
-
* ###
|
|
17687
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
17790
|
+
* @description You can call the CreateTagResources operation to add a tag to multiple Anti-DDoS Proxy (Chinese Mainland) instances at a time.
|
|
17791
|
+
* > Anti-DDoS Proxy (Outside Chinese Mainland) does not support the tag feature.
|
|
17792
|
+
* ### [](#qps-)QPS limits
|
|
17793
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
17688
17794
|
*
|
|
17689
17795
|
* @param request CreateTagResourcesRequest
|
|
17690
17796
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -17731,12 +17837,12 @@ export default class Client extends OpenApi {
|
|
|
17731
17837
|
}
|
|
17732
17838
|
|
|
17733
17839
|
/**
|
|
17734
|
-
* @summary Adds tags to multiple Anti-DDoS
|
|
17840
|
+
* @summary Adds tags to multiple Anti-DDoS Proxy (Chinese Mainland) instances at a time.
|
|
17735
17841
|
*
|
|
17736
|
-
* @description You can call the CreateTagResources operation to add a tag to multiple Anti-DDoS
|
|
17737
|
-
* >
|
|
17738
|
-
* ###
|
|
17739
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
17842
|
+
* @description You can call the CreateTagResources operation to add a tag to multiple Anti-DDoS Proxy (Chinese Mainland) instances at a time.
|
|
17843
|
+
* > Anti-DDoS Proxy (Outside Chinese Mainland) does not support the tag feature.
|
|
17844
|
+
* ### [](#qps-)QPS limits
|
|
17845
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
17740
17846
|
*
|
|
17741
17847
|
* @param request CreateTagResourcesRequest
|
|
17742
17848
|
* @return CreateTagResourcesResponse
|
|
@@ -17747,10 +17853,15 @@ export default class Client extends OpenApi {
|
|
|
17747
17853
|
}
|
|
17748
17854
|
|
|
17749
17855
|
/**
|
|
17856
|
+
* @deprecated OpenAPI CreateWebCCRule is deprecated, please use ddoscoo::2020-01-01::ConfigWebCCRuleV2 instead.
|
|
17857
|
+
*
|
|
17858
|
+
* @summary Creates a custom frequency control rule for a website.
|
|
17859
|
+
*
|
|
17750
17860
|
* @param request CreateWebCCRuleRequest
|
|
17751
17861
|
* @param runtime runtime options for this request RuntimeOptions
|
|
17752
17862
|
* @return CreateWebCCRuleResponse
|
|
17753
17863
|
*/
|
|
17864
|
+
// Deprecated
|
|
17754
17865
|
async createWebCCRuleWithOptions(request: CreateWebCCRuleRequest, runtime: $Util.RuntimeOptions): Promise<CreateWebCCRuleResponse> {
|
|
17755
17866
|
Util.validateModel(request);
|
|
17756
17867
|
let query = { };
|
|
@@ -17808,9 +17919,14 @@ export default class Client extends OpenApi {
|
|
|
17808
17919
|
}
|
|
17809
17920
|
|
|
17810
17921
|
/**
|
|
17922
|
+
* @deprecated OpenAPI CreateWebCCRule is deprecated, please use ddoscoo::2020-01-01::ConfigWebCCRuleV2 instead.
|
|
17923
|
+
*
|
|
17924
|
+
* @summary Creates a custom frequency control rule for a website.
|
|
17925
|
+
*
|
|
17811
17926
|
* @param request CreateWebCCRuleRequest
|
|
17812
17927
|
* @return CreateWebCCRuleResponse
|
|
17813
17928
|
*/
|
|
17929
|
+
// Deprecated
|
|
17814
17930
|
async createWebCCRule(request: CreateWebCCRuleRequest): Promise<CreateWebCCRuleResponse> {
|
|
17815
17931
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17816
17932
|
return await this.createWebCCRuleWithOptions(request, runtime);
|
|
@@ -18257,12 +18373,12 @@ export default class Client extends OpenApi {
|
|
|
18257
18373
|
}
|
|
18258
18374
|
|
|
18259
18375
|
/**
|
|
18260
|
-
* @summary Removes tags from Anti-DDoS
|
|
18376
|
+
* @summary Removes tags from Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
18261
18377
|
*
|
|
18262
|
-
* @description You can call the DeleteTagResources operation to remove tags from Anti-DDoS
|
|
18263
|
-
* >
|
|
18264
|
-
* ###
|
|
18265
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
18378
|
+
* @description You can call the DeleteTagResources operation to remove tags from Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
18379
|
+
* > Only Anti-DDoS Proxy (Chinese Mainland) supports tags.
|
|
18380
|
+
* ### [](#qps-)QPS limits
|
|
18381
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
18266
18382
|
*
|
|
18267
18383
|
* @param request DeleteTagResourcesRequest
|
|
18268
18384
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18313,12 +18429,12 @@ export default class Client extends OpenApi {
|
|
|
18313
18429
|
}
|
|
18314
18430
|
|
|
18315
18431
|
/**
|
|
18316
|
-
* @summary Removes tags from Anti-DDoS
|
|
18432
|
+
* @summary Removes tags from Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
18317
18433
|
*
|
|
18318
|
-
* @description You can call the DeleteTagResources operation to remove tags from Anti-DDoS
|
|
18319
|
-
* >
|
|
18320
|
-
* ###
|
|
18321
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
18434
|
+
* @description You can call the DeleteTagResources operation to remove tags from Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
18435
|
+
* > Only Anti-DDoS Proxy (Chinese Mainland) supports tags.
|
|
18436
|
+
* ### [](#qps-)QPS limits
|
|
18437
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
18322
18438
|
*
|
|
18323
18439
|
* @param request DeleteTagResourcesRequest
|
|
18324
18440
|
* @return DeleteTagResourcesResponse
|
|
@@ -18329,12 +18445,15 @@ export default class Client extends OpenApi {
|
|
|
18329
18445
|
}
|
|
18330
18446
|
|
|
18331
18447
|
/**
|
|
18332
|
-
* @
|
|
18448
|
+
* @deprecated OpenAPI DeleteWebCCRule is deprecated, please use ddoscoo::2020-01-01::DeleteWebCCRuleV2 instead.
|
|
18449
|
+
*
|
|
18450
|
+
* @summary Deletes custom frequency control rules of a website.
|
|
18333
18451
|
*
|
|
18334
18452
|
* @param request DeleteWebCCRuleRequest
|
|
18335
18453
|
* @param runtime runtime options for this request RuntimeOptions
|
|
18336
18454
|
* @return DeleteWebCCRuleResponse
|
|
18337
18455
|
*/
|
|
18456
|
+
// Deprecated
|
|
18338
18457
|
async deleteWebCCRuleWithOptions(request: DeleteWebCCRuleRequest, runtime: $Util.RuntimeOptions): Promise<DeleteWebCCRuleResponse> {
|
|
18339
18458
|
Util.validateModel(request);
|
|
18340
18459
|
let query = { };
|
|
@@ -18368,18 +18487,21 @@ export default class Client extends OpenApi {
|
|
|
18368
18487
|
}
|
|
18369
18488
|
|
|
18370
18489
|
/**
|
|
18371
|
-
* @
|
|
18490
|
+
* @deprecated OpenAPI DeleteWebCCRule is deprecated, please use ddoscoo::2020-01-01::DeleteWebCCRuleV2 instead.
|
|
18491
|
+
*
|
|
18492
|
+
* @summary Deletes custom frequency control rules of a website.
|
|
18372
18493
|
*
|
|
18373
18494
|
* @param request DeleteWebCCRuleRequest
|
|
18374
18495
|
* @return DeleteWebCCRuleResponse
|
|
18375
18496
|
*/
|
|
18497
|
+
// Deprecated
|
|
18376
18498
|
async deleteWebCCRule(request: DeleteWebCCRuleRequest): Promise<DeleteWebCCRuleResponse> {
|
|
18377
18499
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18378
18500
|
return await this.deleteWebCCRuleWithOptions(request, runtime);
|
|
18379
18501
|
}
|
|
18380
18502
|
|
|
18381
18503
|
/**
|
|
18382
|
-
* @summary
|
|
18504
|
+
* @summary Deletes custom frequency control rules of a website.
|
|
18383
18505
|
*
|
|
18384
18506
|
* @param request DeleteWebCCRuleV2Request
|
|
18385
18507
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18418,7 +18540,7 @@ export default class Client extends OpenApi {
|
|
|
18418
18540
|
}
|
|
18419
18541
|
|
|
18420
18542
|
/**
|
|
18421
|
-
* @summary
|
|
18543
|
+
* @summary Deletes custom frequency control rules of a website.
|
|
18422
18544
|
*
|
|
18423
18545
|
* @param request DeleteWebCCRuleV2Request
|
|
18424
18546
|
* @return DeleteWebCCRuleV2Response
|
|
@@ -18933,12 +19055,12 @@ export default class Client extends OpenApi {
|
|
|
18933
19055
|
}
|
|
18934
19056
|
|
|
18935
19057
|
/**
|
|
18936
|
-
* @summary Queries the Diversion from Origin Server configurations of one or more Anti-DDoS
|
|
19058
|
+
* @summary Queries the Diversion from Origin Server configurations of one or more Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
18937
19059
|
*
|
|
18938
|
-
* @description
|
|
18939
|
-
* >
|
|
18940
|
-
* ###
|
|
18941
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
19060
|
+
* @description You can call this operation to query the Diversion from Origin Server configurations of one or more Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
19061
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
19062
|
+
* ### [](#qps-)QPS limits
|
|
19063
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
18942
19064
|
*
|
|
18943
19065
|
* @param request DescribeBlockStatusRequest
|
|
18944
19066
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18973,12 +19095,12 @@ export default class Client extends OpenApi {
|
|
|
18973
19095
|
}
|
|
18974
19096
|
|
|
18975
19097
|
/**
|
|
18976
|
-
* @summary Queries the Diversion from Origin Server configurations of one or more Anti-DDoS
|
|
19098
|
+
* @summary Queries the Diversion from Origin Server configurations of one or more Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
18977
19099
|
*
|
|
18978
|
-
* @description
|
|
18979
|
-
* >
|
|
18980
|
-
* ###
|
|
18981
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
19100
|
+
* @description You can call this operation to query the Diversion from Origin Server configurations of one or more Anti-DDoS Proxy (Chinese Mainland) instances.
|
|
19101
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
19102
|
+
* ### [](#qps-)QPS limits
|
|
19103
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
18982
19104
|
*
|
|
18983
19105
|
* @param request DescribeBlockStatusRequest
|
|
18984
19106
|
* @return DescribeBlockStatusResponse
|
|
@@ -18989,7 +19111,7 @@ export default class Client extends OpenApi {
|
|
|
18989
19111
|
}
|
|
18990
19112
|
|
|
18991
19113
|
/**
|
|
18992
|
-
* @summary Queries the certificate information about
|
|
19114
|
+
* @summary Queries information about all certificates that can be associated with the current domain name instead of the certificate currently in use. To query the information about the certificate that is currently in use, you can call the DescribeWebRules operation and view the values of the CertName and CertRegion response parameters.
|
|
18993
19115
|
*
|
|
18994
19116
|
* @param request DescribeCertsRequest
|
|
18995
19117
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19024,7 +19146,7 @@ export default class Client extends OpenApi {
|
|
|
19024
19146
|
}
|
|
19025
19147
|
|
|
19026
19148
|
/**
|
|
19027
|
-
* @summary Queries the certificate information about
|
|
19149
|
+
* @summary Queries information about all certificates that can be associated with the current domain name instead of the certificate currently in use. To query the information about the certificate that is currently in use, you can call the DescribeWebRules operation and view the values of the CertName and CertRegion response parameters.
|
|
19028
19150
|
*
|
|
19029
19151
|
* @param request DescribeCertsRequest
|
|
19030
19152
|
* @return DescribeCertsResponse
|
|
@@ -19077,7 +19199,7 @@ export default class Client extends OpenApi {
|
|
|
19077
19199
|
}
|
|
19078
19200
|
|
|
19079
19201
|
/**
|
|
19080
|
-
* @summary Queries the attack events launched against one or more Anti-DDoS
|
|
19202
|
+
* @summary Queries the attack events launched against one or more Anti-DDoS Proxy instances.
|
|
19081
19203
|
*
|
|
19082
19204
|
* @param request DescribeDDoSEventsRequest
|
|
19083
19205
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19128,7 +19250,7 @@ export default class Client extends OpenApi {
|
|
|
19128
19250
|
}
|
|
19129
19251
|
|
|
19130
19252
|
/**
|
|
19131
|
-
* @summary Queries the attack events launched against one or more Anti-DDoS
|
|
19253
|
+
* @summary Queries the attack events launched against one or more Anti-DDoS Proxy instances.
|
|
19132
19254
|
*
|
|
19133
19255
|
* @param request DescribeDDoSEventsRequest
|
|
19134
19256
|
* @return DescribeDDoSEventsResponse
|
|
@@ -19224,6 +19346,10 @@ export default class Client extends OpenApi {
|
|
|
19224
19346
|
query["Ip"] = request.ip;
|
|
19225
19347
|
}
|
|
19226
19348
|
|
|
19349
|
+
if (!Util.isUnset(request.range)) {
|
|
19350
|
+
query["Range"] = request.range;
|
|
19351
|
+
}
|
|
19352
|
+
|
|
19227
19353
|
if (!Util.isUnset(request.startTime)) {
|
|
19228
19354
|
query["StartTime"] = request.startTime;
|
|
19229
19355
|
}
|
|
@@ -19332,6 +19458,10 @@ export default class Client extends OpenApi {
|
|
|
19332
19458
|
query["Ip"] = request.ip;
|
|
19333
19459
|
}
|
|
19334
19460
|
|
|
19461
|
+
if (!Util.isUnset(request.range)) {
|
|
19462
|
+
query["Range"] = request.range;
|
|
19463
|
+
}
|
|
19464
|
+
|
|
19335
19465
|
if (!Util.isUnset(request.startTime)) {
|
|
19336
19466
|
query["StartTime"] = request.startTime;
|
|
19337
19467
|
}
|
|
@@ -19471,12 +19601,12 @@ export default class Client extends OpenApi {
|
|
|
19471
19601
|
}
|
|
19472
19602
|
|
|
19473
19603
|
/**
|
|
19474
|
-
* @summary Queries the statistics on advanced mitigation sessions of an Anti-DDoS
|
|
19604
|
+
* @summary Queries the statistics on advanced mitigation sessions of an Anti-DDoS Proxy (Outside Chinese Mainland) instance.
|
|
19475
19605
|
*
|
|
19476
|
-
* @description You can call the DescribeDefenseCountStatistics operation to query the information about advanced mitigation sessions of an Anti-DDoS
|
|
19477
|
-
* >
|
|
19478
|
-
* ###
|
|
19479
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
19606
|
+
* @description You can call the DescribeDefenseCountStatistics operation to query the information about advanced mitigation sessions of an Anti-DDoS Proxy (Outside Chinese Mainland) instance. For example, you can query the number of advanced mitigation sessions that are used within the current calendar month and the number of remaining advanced mitigation sessions.
|
|
19607
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Outside Chinese Mainland).
|
|
19608
|
+
* ### [](#qps-)QPS limits
|
|
19609
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
19480
19610
|
*
|
|
19481
19611
|
* @param request DescribeDefenseCountStatisticsRequest
|
|
19482
19612
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19507,12 +19637,12 @@ export default class Client extends OpenApi {
|
|
|
19507
19637
|
}
|
|
19508
19638
|
|
|
19509
19639
|
/**
|
|
19510
|
-
* @summary Queries the statistics on advanced mitigation sessions of an Anti-DDoS
|
|
19640
|
+
* @summary Queries the statistics on advanced mitigation sessions of an Anti-DDoS Proxy (Outside Chinese Mainland) instance.
|
|
19511
19641
|
*
|
|
19512
|
-
* @description You can call the DescribeDefenseCountStatistics operation to query the information about advanced mitigation sessions of an Anti-DDoS
|
|
19513
|
-
* >
|
|
19514
|
-
* ###
|
|
19515
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
19642
|
+
* @description You can call the DescribeDefenseCountStatistics operation to query the information about advanced mitigation sessions of an Anti-DDoS Proxy (Outside Chinese Mainland) instance. For example, you can query the number of advanced mitigation sessions that are used within the current calendar month and the number of remaining advanced mitigation sessions.
|
|
19643
|
+
* > This operation is suitable only for Anti-DDoS Proxy (Outside Chinese Mainland).
|
|
19644
|
+
* ### [](#qps-)QPS limits
|
|
19645
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
19516
19646
|
*
|
|
19517
19647
|
* @param request DescribeDefenseCountStatisticsRequest
|
|
19518
19648
|
* @return DescribeDefenseCountStatisticsResponse
|
|
@@ -19588,6 +19718,64 @@ export default class Client extends OpenApi {
|
|
|
19588
19718
|
return await this.describeDefenseRecordsWithOptions(request, runtime);
|
|
19589
19719
|
}
|
|
19590
19720
|
|
|
19721
|
+
/**
|
|
19722
|
+
* @summary 查询目的端口事件
|
|
19723
|
+
*
|
|
19724
|
+
* @param request DescribeDestinationPortEventRequest
|
|
19725
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19726
|
+
* @return DescribeDestinationPortEventResponse
|
|
19727
|
+
*/
|
|
19728
|
+
async describeDestinationPortEventWithOptions(request: DescribeDestinationPortEventRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDestinationPortEventResponse> {
|
|
19729
|
+
Util.validateModel(request);
|
|
19730
|
+
let query = { };
|
|
19731
|
+
if (!Util.isUnset(request.eventType)) {
|
|
19732
|
+
query["EventType"] = request.eventType;
|
|
19733
|
+
}
|
|
19734
|
+
|
|
19735
|
+
if (!Util.isUnset(request.ip)) {
|
|
19736
|
+
query["Ip"] = request.ip;
|
|
19737
|
+
}
|
|
19738
|
+
|
|
19739
|
+
if (!Util.isUnset(request.range)) {
|
|
19740
|
+
query["Range"] = request.range;
|
|
19741
|
+
}
|
|
19742
|
+
|
|
19743
|
+
if (!Util.isUnset(request.region)) {
|
|
19744
|
+
query["Region"] = request.region;
|
|
19745
|
+
}
|
|
19746
|
+
|
|
19747
|
+
if (!Util.isUnset(request.startTime)) {
|
|
19748
|
+
query["StartTime"] = request.startTime;
|
|
19749
|
+
}
|
|
19750
|
+
|
|
19751
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19752
|
+
query: OpenApiUtil.query(query),
|
|
19753
|
+
});
|
|
19754
|
+
let params = new $OpenApi.Params({
|
|
19755
|
+
action: "DescribeDestinationPortEvent",
|
|
19756
|
+
version: "2020-01-01",
|
|
19757
|
+
protocol: "HTTPS",
|
|
19758
|
+
pathname: "/",
|
|
19759
|
+
method: "POST",
|
|
19760
|
+
authType: "AK",
|
|
19761
|
+
style: "RPC",
|
|
19762
|
+
reqBodyType: "formData",
|
|
19763
|
+
bodyType: "json",
|
|
19764
|
+
});
|
|
19765
|
+
return $tea.cast<DescribeDestinationPortEventResponse>(await this.callApi(params, req, runtime), new DescribeDestinationPortEventResponse({}));
|
|
19766
|
+
}
|
|
19767
|
+
|
|
19768
|
+
/**
|
|
19769
|
+
* @summary 查询目的端口事件
|
|
19770
|
+
*
|
|
19771
|
+
* @param request DescribeDestinationPortEventRequest
|
|
19772
|
+
* @return DescribeDestinationPortEventResponse
|
|
19773
|
+
*/
|
|
19774
|
+
async describeDestinationPortEvent(request: DescribeDestinationPortEventRequest): Promise<DescribeDestinationPortEventResponse> {
|
|
19775
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19776
|
+
return await this.describeDestinationPortEventWithOptions(request, runtime);
|
|
19777
|
+
}
|
|
19778
|
+
|
|
19591
19779
|
/**
|
|
19592
19780
|
* @summary Queries the attack events launched against a website.
|
|
19593
19781
|
*
|
|
@@ -20355,7 +20543,7 @@ export default class Client extends OpenApi {
|
|
|
20355
20543
|
}
|
|
20356
20544
|
|
|
20357
20545
|
/**
|
|
20358
|
-
* @summary
|
|
20546
|
+
* @summary Queries the line chart of the bills for the burstable QPS of an Anti-DDoS Proxy instance.
|
|
20359
20547
|
*
|
|
20360
20548
|
* @param request DescribeElasticQpsRequest
|
|
20361
20549
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20402,7 +20590,7 @@ export default class Client extends OpenApi {
|
|
|
20402
20590
|
}
|
|
20403
20591
|
|
|
20404
20592
|
/**
|
|
20405
|
-
* @summary
|
|
20593
|
+
* @summary Queries the line chart of the bills for the burstable QPS of an Anti-DDoS Proxy instance.
|
|
20406
20594
|
*
|
|
20407
20595
|
* @param request DescribeElasticQpsRequest
|
|
20408
20596
|
* @return DescribeElasticQpsResponse
|
|
@@ -20413,7 +20601,7 @@ export default class Client extends OpenApi {
|
|
|
20413
20601
|
}
|
|
20414
20602
|
|
|
20415
20603
|
/**
|
|
20416
|
-
* @summary
|
|
20604
|
+
* @summary Queries the burstable QPS details of an Anti-DDoS Proxy instance.
|
|
20417
20605
|
*
|
|
20418
20606
|
* @param request DescribeElasticQpsRecordRequest
|
|
20419
20607
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20452,7 +20640,7 @@ export default class Client extends OpenApi {
|
|
|
20452
20640
|
}
|
|
20453
20641
|
|
|
20454
20642
|
/**
|
|
20455
|
-
* @summary
|
|
20643
|
+
* @summary Queries the burstable QPS details of an Anti-DDoS Proxy instance.
|
|
20456
20644
|
*
|
|
20457
20645
|
* @param request DescribeElasticQpsRecordRequest
|
|
20458
20646
|
* @return DescribeElasticQpsRecordResponse
|
|
@@ -20793,7 +20981,7 @@ export default class Client extends OpenApi {
|
|
|
20793
20981
|
}
|
|
20794
20982
|
|
|
20795
20983
|
/**
|
|
20796
|
-
* @summary Queries the statistics on one or more Anti-DDoS
|
|
20984
|
+
* @summary Queries the statistics on one or more Anti-DDoS Proxy instances, such as the numbers of protected domain names and ports.
|
|
20797
20985
|
*
|
|
20798
20986
|
* @param request DescribeInstanceStatisticsRequest
|
|
20799
20987
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20824,7 +21012,7 @@ export default class Client extends OpenApi {
|
|
|
20824
21012
|
}
|
|
20825
21013
|
|
|
20826
21014
|
/**
|
|
20827
|
-
* @summary Queries the statistics on one or more Anti-DDoS
|
|
21015
|
+
* @summary Queries the statistics on one or more Anti-DDoS Proxy instances, such as the numbers of protected domain names and ports.
|
|
20828
21016
|
*
|
|
20829
21017
|
* @param request DescribeInstanceStatisticsRequest
|
|
20830
21018
|
* @return DescribeInstanceStatisticsResponse
|
|
@@ -20835,7 +21023,7 @@ export default class Client extends OpenApi {
|
|
|
20835
21023
|
}
|
|
20836
21024
|
|
|
20837
21025
|
/**
|
|
20838
|
-
* @summary Queries the status of a specified Anti-DDoS
|
|
21026
|
+
* @summary Queries the status of a specified Anti-DDoS Proxy instance.
|
|
20839
21027
|
*
|
|
20840
21028
|
* @param request DescribeInstanceStatusRequest
|
|
20841
21029
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20870,7 +21058,7 @@ export default class Client extends OpenApi {
|
|
|
20870
21058
|
}
|
|
20871
21059
|
|
|
20872
21060
|
/**
|
|
20873
|
-
* @summary Queries the status of a specified Anti-DDoS
|
|
21061
|
+
* @summary Queries the status of a specified Anti-DDoS Proxy instance.
|
|
20874
21062
|
*
|
|
20875
21063
|
* @param request DescribeInstanceStatusRequest
|
|
20876
21064
|
* @return DescribeInstanceStatusResponse
|
|
@@ -21017,7 +21205,7 @@ export default class Client extends OpenApi {
|
|
|
21017
21205
|
}
|
|
21018
21206
|
|
|
21019
21207
|
/**
|
|
21020
|
-
* @summary
|
|
21208
|
+
* @summary Queries the configuration of back-to-origin persistent connections of a domain name.
|
|
21021
21209
|
*
|
|
21022
21210
|
* @param request DescribeL7UsKeepaliveRequest
|
|
21023
21211
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -21048,7 +21236,7 @@ export default class Client extends OpenApi {
|
|
|
21048
21236
|
}
|
|
21049
21237
|
|
|
21050
21238
|
/**
|
|
21051
|
-
* @summary
|
|
21239
|
+
* @summary Queries the configuration of back-to-origin persistent connections of a domain name.
|
|
21052
21240
|
*
|
|
21053
21241
|
* @param request DescribeL7UsKeepaliveRequest
|
|
21054
21242
|
* @return DescribeL7UsKeepaliveResponse
|
|
@@ -21523,6 +21711,8 @@ export default class Client extends OpenApi {
|
|
|
21523
21711
|
}
|
|
21524
21712
|
|
|
21525
21713
|
/**
|
|
21714
|
+
* @summary Queries the top source IP addresses of the volumetric attack events for the Anti-DDoS Pro or Anti-DDoS Premium instance.
|
|
21715
|
+
*
|
|
21526
21716
|
* @param request DescribePortCcAttackTopIPRequest
|
|
21527
21717
|
* @param runtime runtime options for this request RuntimeOptions
|
|
21528
21718
|
* @return DescribePortCcAttackTopIPResponse
|
|
@@ -21564,6 +21754,8 @@ export default class Client extends OpenApi {
|
|
|
21564
21754
|
}
|
|
21565
21755
|
|
|
21566
21756
|
/**
|
|
21757
|
+
* @summary Queries the top source IP addresses of the volumetric attack events for the Anti-DDoS Pro or Anti-DDoS Premium instance.
|
|
21758
|
+
*
|
|
21567
21759
|
* @param request DescribePortCcAttackTopIPRequest
|
|
21568
21760
|
* @return DescribePortCcAttackTopIPResponse
|
|
21569
21761
|
*/
|
|
@@ -21631,7 +21823,7 @@ export default class Client extends OpenApi {
|
|
|
21631
21823
|
}
|
|
21632
21824
|
|
|
21633
21825
|
/**
|
|
21634
|
-
* @summary Queries the connections established over the ports of one or more Anti-DDoS
|
|
21826
|
+
* @summary Queries the connections established over the ports of one or more Anti-DDoS Proxy instances.
|
|
21635
21827
|
*
|
|
21636
21828
|
* @param request DescribePortConnsListRequest
|
|
21637
21829
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -21682,7 +21874,7 @@ export default class Client extends OpenApi {
|
|
|
21682
21874
|
}
|
|
21683
21875
|
|
|
21684
21876
|
/**
|
|
21685
|
-
* @summary Queries the connections established over the ports of one or more Anti-DDoS
|
|
21877
|
+
* @summary Queries the connections established over the ports of one or more Anti-DDoS Proxy instances.
|
|
21686
21878
|
*
|
|
21687
21879
|
* @param request DescribePortConnsListRequest
|
|
21688
21880
|
* @return DescribePortConnsListResponse
|
|
@@ -22455,12 +22647,12 @@ export default class Client extends OpenApi {
|
|
|
22455
22647
|
}
|
|
22456
22648
|
|
|
22457
22649
|
/**
|
|
22458
|
-
* @summary Queries all tag keys and the Anti-DDoS
|
|
22650
|
+
* @summary Queries all tag keys and the number of Anti-DDoS Proxy (Chinese Mainland) instances to which each tag key is added.
|
|
22459
22651
|
*
|
|
22460
|
-
* @description You can call this operation to query all tag keys and the Anti-DDoS
|
|
22461
|
-
* >
|
|
22462
|
-
* ###
|
|
22463
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
22652
|
+
* @description You can call this operation to query all tag keys and the number of Anti-DDoS Proxy (Chinese Mainland) instances to which each tag key is added by page.
|
|
22653
|
+
* > Only Anti-DDoS Proxy (Chinese Mainland) supports tags.
|
|
22654
|
+
* ### [](#qps-)QPS limits
|
|
22655
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
22464
22656
|
*
|
|
22465
22657
|
* @param request DescribeTagKeysRequest
|
|
22466
22658
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -22507,12 +22699,12 @@ export default class Client extends OpenApi {
|
|
|
22507
22699
|
}
|
|
22508
22700
|
|
|
22509
22701
|
/**
|
|
22510
|
-
* @summary Queries all tag keys and the Anti-DDoS
|
|
22702
|
+
* @summary Queries all tag keys and the number of Anti-DDoS Proxy (Chinese Mainland) instances to which each tag key is added.
|
|
22511
22703
|
*
|
|
22512
|
-
* @description You can call this operation to query all tag keys and the Anti-DDoS
|
|
22513
|
-
* >
|
|
22514
|
-
* ###
|
|
22515
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
22704
|
+
* @description You can call this operation to query all tag keys and the number of Anti-DDoS Proxy (Chinese Mainland) instances to which each tag key is added by page.
|
|
22705
|
+
* > Only Anti-DDoS Proxy (Chinese Mainland) supports tags.
|
|
22706
|
+
* ### [](#qps-)QPS limits
|
|
22707
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
22516
22708
|
*
|
|
22517
22709
|
* @param request DescribeTagKeysRequest
|
|
22518
22710
|
* @return DescribeTagKeysResponse
|
|
@@ -22523,12 +22715,12 @@ export default class Client extends OpenApi {
|
|
|
22523
22715
|
}
|
|
22524
22716
|
|
|
22525
22717
|
/**
|
|
22526
|
-
* @summary Queries the information about the tags that are added to an Anti-DDoS
|
|
22718
|
+
* @summary Queries the information about the tags that are added to an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
22527
22719
|
*
|
|
22528
|
-
* @description You can call the DescribeTagResources operation to query the information about the tags that are added to an Anti-DDoS
|
|
22529
|
-
* >
|
|
22530
|
-
* ###
|
|
22531
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
22720
|
+
* @description You can call the DescribeTagResources operation to query the information about the tags that are added to an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
22721
|
+
* > Only Anti-DDoS Proxy (Chinese Mainland) supports tags.
|
|
22722
|
+
* ### [](#qps-)QPS limits
|
|
22723
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
22532
22724
|
*
|
|
22533
22725
|
* @param request DescribeTagResourcesRequest
|
|
22534
22726
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -22579,12 +22771,12 @@ export default class Client extends OpenApi {
|
|
|
22579
22771
|
}
|
|
22580
22772
|
|
|
22581
22773
|
/**
|
|
22582
|
-
* @summary Queries the information about the tags that are added to an Anti-DDoS
|
|
22774
|
+
* @summary Queries the information about the tags that are added to an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
22583
22775
|
*
|
|
22584
|
-
* @description You can call the DescribeTagResources operation to query the information about the tags that are added to an Anti-DDoS
|
|
22585
|
-
* >
|
|
22586
|
-
* ###
|
|
22587
|
-
* You can call this operation up to 10 times per second per account. If the number of
|
|
22776
|
+
* @description You can call the DescribeTagResources operation to query the information about the tags that are added to an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
22777
|
+
* > Only Anti-DDoS Proxy (Chinese Mainland) supports tags.
|
|
22778
|
+
* ### [](#qps-)QPS limits
|
|
22779
|
+
* You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
22588
22780
|
*
|
|
22589
22781
|
* @param request DescribeTagResourcesRequest
|
|
22590
22782
|
* @return DescribeTagResourcesResponse
|
|
@@ -23017,12 +23209,15 @@ export default class Client extends OpenApi {
|
|
|
23017
23209
|
}
|
|
23018
23210
|
|
|
23019
23211
|
/**
|
|
23212
|
+
* @deprecated OpenAPI DescribeWebCCRules is deprecated, please use ddoscoo::2020-01-01::ConfigWebCCRuleV2 instead.
|
|
23213
|
+
*
|
|
23020
23214
|
* @summary Queries the custom frequency control rules that are created for a website.
|
|
23021
23215
|
*
|
|
23022
23216
|
* @param request DescribeWebCCRulesRequest
|
|
23023
23217
|
* @param runtime runtime options for this request RuntimeOptions
|
|
23024
23218
|
* @return DescribeWebCCRulesResponse
|
|
23025
23219
|
*/
|
|
23220
|
+
// Deprecated
|
|
23026
23221
|
async describeWebCCRulesWithOptions(request: DescribeWebCCRulesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeWebCCRulesResponse> {
|
|
23027
23222
|
Util.validateModel(request);
|
|
23028
23223
|
let query = { };
|
|
@@ -23060,18 +23255,21 @@ export default class Client extends OpenApi {
|
|
|
23060
23255
|
}
|
|
23061
23256
|
|
|
23062
23257
|
/**
|
|
23258
|
+
* @deprecated OpenAPI DescribeWebCCRules is deprecated, please use ddoscoo::2020-01-01::ConfigWebCCRuleV2 instead.
|
|
23259
|
+
*
|
|
23063
23260
|
* @summary Queries the custom frequency control rules that are created for a website.
|
|
23064
23261
|
*
|
|
23065
23262
|
* @param request DescribeWebCCRulesRequest
|
|
23066
23263
|
* @return DescribeWebCCRulesResponse
|
|
23067
23264
|
*/
|
|
23265
|
+
// Deprecated
|
|
23068
23266
|
async describeWebCCRules(request: DescribeWebCCRulesRequest): Promise<DescribeWebCCRulesResponse> {
|
|
23069
23267
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23070
23268
|
return await this.describeWebCCRulesWithOptions(request, runtime);
|
|
23071
23269
|
}
|
|
23072
23270
|
|
|
23073
23271
|
/**
|
|
23074
|
-
* @summary
|
|
23272
|
+
* @summary Queries the custom frequency control rules that are created for a website.
|
|
23075
23273
|
*
|
|
23076
23274
|
* @param request DescribeWebCCRulesV2Request
|
|
23077
23275
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -23114,7 +23312,7 @@ export default class Client extends OpenApi {
|
|
|
23114
23312
|
}
|
|
23115
23313
|
|
|
23116
23314
|
/**
|
|
23117
|
-
* @summary
|
|
23315
|
+
* @summary Queries the custom frequency control rules that are created for a website.
|
|
23118
23316
|
*
|
|
23119
23317
|
* @param request DescribeWebCCRulesV2Request
|
|
23120
23318
|
* @return DescribeWebCCRulesV2Response
|
|
@@ -23359,6 +23557,8 @@ export default class Client extends OpenApi {
|
|
|
23359
23557
|
}
|
|
23360
23558
|
|
|
23361
23559
|
/**
|
|
23560
|
+
* @summary Queries the top source IP addresses of the web resource exhaustion attacks for the Anti-DDoS Proxy instance.
|
|
23561
|
+
*
|
|
23362
23562
|
* @param request DescribeWebReportTopIpRequest
|
|
23363
23563
|
* @param runtime runtime options for this request RuntimeOptions
|
|
23364
23564
|
* @return DescribeWebReportTopIpResponse
|
|
@@ -23408,6 +23608,8 @@ export default class Client extends OpenApi {
|
|
|
23408
23608
|
}
|
|
23409
23609
|
|
|
23410
23610
|
/**
|
|
23611
|
+
* @summary Queries the top source IP addresses of the web resource exhaustion attacks for the Anti-DDoS Proxy instance.
|
|
23612
|
+
*
|
|
23411
23613
|
* @param request DescribeWebReportTopIpRequest
|
|
23412
23614
|
* @return DescribeWebReportTopIpResponse
|
|
23413
23615
|
*/
|
|
@@ -24119,9 +24321,9 @@ export default class Client extends OpenApi {
|
|
|
24119
24321
|
}
|
|
24120
24322
|
|
|
24121
24323
|
/**
|
|
24122
|
-
* @summary Modifies the Diversion from Origin Server configuration of an Anti-DDoS
|
|
24324
|
+
* @summary Modifies the Diversion from Origin Server configuration of an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
24123
24325
|
*
|
|
24124
|
-
* @description >
|
|
24326
|
+
* @description > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
24125
24327
|
*
|
|
24126
24328
|
* @param request ModifyBlockStatusRequest
|
|
24127
24329
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24164,9 +24366,9 @@ export default class Client extends OpenApi {
|
|
|
24164
24366
|
}
|
|
24165
24367
|
|
|
24166
24368
|
/**
|
|
24167
|
-
* @summary Modifies the Diversion from Origin Server configuration of an Anti-DDoS
|
|
24369
|
+
* @summary Modifies the Diversion from Origin Server configuration of an Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
24168
24370
|
*
|
|
24169
|
-
* @description >
|
|
24371
|
+
* @description > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
24170
24372
|
*
|
|
24171
24373
|
* @param request ModifyBlockStatusRequest
|
|
24172
24374
|
* @return ModifyBlockStatusResponse
|
|
@@ -24297,9 +24499,9 @@ export default class Client extends OpenApi {
|
|
|
24297
24499
|
}
|
|
24298
24500
|
|
|
24299
24501
|
/**
|
|
24300
|
-
* @summary Modifies the burstable protection bandwidth of a specified Anti-DDoS
|
|
24502
|
+
* @summary Modifies the burstable protection bandwidth of a specified Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
24301
24503
|
*
|
|
24302
|
-
* @description >
|
|
24504
|
+
* @description > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
24303
24505
|
*
|
|
24304
24506
|
* @param request ModifyElasticBandWidthRequest
|
|
24305
24507
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24334,9 +24536,9 @@ export default class Client extends OpenApi {
|
|
|
24334
24536
|
}
|
|
24335
24537
|
|
|
24336
24538
|
/**
|
|
24337
|
-
* @summary Modifies the burstable protection bandwidth of a specified Anti-DDoS
|
|
24539
|
+
* @summary Modifies the burstable protection bandwidth of a specified Anti-DDoS Proxy (Chinese Mainland) instance.
|
|
24338
24540
|
*
|
|
24339
|
-
* @description >
|
|
24541
|
+
* @description > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
24340
24542
|
*
|
|
24341
24543
|
* @param request ModifyElasticBandWidthRequest
|
|
24342
24544
|
* @return ModifyElasticBandWidthResponse
|
|
@@ -24401,7 +24603,9 @@ export default class Client extends OpenApi {
|
|
|
24401
24603
|
}
|
|
24402
24604
|
|
|
24403
24605
|
/**
|
|
24404
|
-
* @summary
|
|
24606
|
+
* @summary Configures the burstable QPS and mode of an Anti-DDoS Proxy instance.
|
|
24607
|
+
*
|
|
24608
|
+
* @description You can enable burstable QPS only for IPv4 instances.
|
|
24405
24609
|
*
|
|
24406
24610
|
* @param request ModifyElasticBizQpsRequest
|
|
24407
24611
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24440,7 +24644,9 @@ export default class Client extends OpenApi {
|
|
|
24440
24644
|
}
|
|
24441
24645
|
|
|
24442
24646
|
/**
|
|
24443
|
-
* @summary
|
|
24647
|
+
* @summary Configures the burstable QPS and mode of an Anti-DDoS Proxy instance.
|
|
24648
|
+
*
|
|
24649
|
+
* @description You can enable burstable QPS only for IPv4 instances.
|
|
24444
24650
|
*
|
|
24445
24651
|
* @param request ModifyElasticBizQpsRequest
|
|
24446
24652
|
* @return ModifyElasticBizQpsResponse
|
|
@@ -24603,7 +24809,7 @@ export default class Client extends OpenApi {
|
|
|
24603
24809
|
/**
|
|
24604
24810
|
* @summary Enables or disables HTTP/2 for the forwarding rule of a website.
|
|
24605
24811
|
*
|
|
24606
|
-
* @description >
|
|
24812
|
+
* @description > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
24607
24813
|
*
|
|
24608
24814
|
* @param request ModifyHttp2EnableRequest
|
|
24609
24815
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24644,7 +24850,7 @@ export default class Client extends OpenApi {
|
|
|
24644
24850
|
/**
|
|
24645
24851
|
* @summary Enables or disables HTTP/2 for the forwarding rule of a website.
|
|
24646
24852
|
*
|
|
24647
|
-
* @description >
|
|
24853
|
+
* @description > This operation is suitable only for Anti-DDoS Proxy (Chinese Mainland).
|
|
24648
24854
|
*
|
|
24649
24855
|
* @param request ModifyHttp2EnableRequest
|
|
24650
24856
|
* @return ModifyHttp2EnableResponse
|
|
@@ -24917,7 +25123,7 @@ export default class Client extends OpenApi {
|
|
|
24917
25123
|
}
|
|
24918
25124
|
|
|
24919
25125
|
/**
|
|
24920
|
-
* @summary
|
|
25126
|
+
* @summary Switches between the metering methods of the burstable clean bandwidth feature.
|
|
24921
25127
|
*
|
|
24922
25128
|
* @param request ModifyQpsModeRequest
|
|
24923
25129
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24952,7 +25158,7 @@ export default class Client extends OpenApi {
|
|
|
24952
25158
|
}
|
|
24953
25159
|
|
|
24954
25160
|
/**
|
|
24955
|
-
* @summary
|
|
25161
|
+
* @summary Switches between the metering methods of the burstable clean bandwidth feature.
|
|
24956
25162
|
*
|
|
24957
25163
|
* @param request ModifyQpsModeRequest
|
|
24958
25164
|
* @return ModifyQpsModeResponse
|
|
@@ -25383,7 +25589,7 @@ export default class Client extends OpenApi {
|
|
|
25383
25589
|
}
|
|
25384
25590
|
|
|
25385
25591
|
/**
|
|
25386
|
-
* @summary
|
|
25592
|
+
* @summary Enables or disables the HTTP flood mitigation feature for a website.
|
|
25387
25593
|
*
|
|
25388
25594
|
* @param request ModifyWebCCGlobalSwitchRequest
|
|
25389
25595
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25418,7 +25624,7 @@ export default class Client extends OpenApi {
|
|
|
25418
25624
|
}
|
|
25419
25625
|
|
|
25420
25626
|
/**
|
|
25421
|
-
* @summary
|
|
25627
|
+
* @summary Enables or disables the HTTP flood mitigation feature for a website.
|
|
25422
25628
|
*
|
|
25423
25629
|
* @param request ModifyWebCCGlobalSwitchRequest
|
|
25424
25630
|
* @return ModifyWebCCGlobalSwitchResponse
|
|
@@ -25429,10 +25635,15 @@ export default class Client extends OpenApi {
|
|
|
25429
25635
|
}
|
|
25430
25636
|
|
|
25431
25637
|
/**
|
|
25638
|
+
* @deprecated OpenAPI ModifyWebCCRule is deprecated, please use ddoscoo::2020-01-01::ConfigWebCCRuleV2 instead.
|
|
25639
|
+
*
|
|
25640
|
+
* @summary Modifies the custom frequency control rule of a website.
|
|
25641
|
+
*
|
|
25432
25642
|
* @param request ModifyWebCCRuleRequest
|
|
25433
25643
|
* @param runtime runtime options for this request RuntimeOptions
|
|
25434
25644
|
* @return ModifyWebCCRuleResponse
|
|
25435
25645
|
*/
|
|
25646
|
+
// Deprecated
|
|
25436
25647
|
async modifyWebCCRuleWithOptions(request: ModifyWebCCRuleRequest, runtime: $Util.RuntimeOptions): Promise<ModifyWebCCRuleResponse> {
|
|
25437
25648
|
Util.validateModel(request);
|
|
25438
25649
|
let query = { };
|
|
@@ -25490,9 +25701,14 @@ export default class Client extends OpenApi {
|
|
|
25490
25701
|
}
|
|
25491
25702
|
|
|
25492
25703
|
/**
|
|
25704
|
+
* @deprecated OpenAPI ModifyWebCCRule is deprecated, please use ddoscoo::2020-01-01::ConfigWebCCRuleV2 instead.
|
|
25705
|
+
*
|
|
25706
|
+
* @summary Modifies the custom frequency control rule of a website.
|
|
25707
|
+
*
|
|
25493
25708
|
* @param request ModifyWebCCRuleRequest
|
|
25494
25709
|
* @return ModifyWebCCRuleResponse
|
|
25495
25710
|
*/
|
|
25711
|
+
// Deprecated
|
|
25496
25712
|
async modifyWebCCRule(request: ModifyWebCCRuleRequest): Promise<ModifyWebCCRuleResponse> {
|
|
25497
25713
|
let runtime = new $Util.RuntimeOptions({ });
|
|
25498
25714
|
return await this.modifyWebCCRuleWithOptions(request, runtime);
|
|
@@ -25921,7 +26137,7 @@ export default class Client extends OpenApi {
|
|
|
25921
26137
|
}
|
|
25922
26138
|
|
|
25923
26139
|
/**
|
|
25924
|
-
* @summary Switches service traffic to
|
|
26140
|
+
* @summary Switches service traffic to an Anti-DDoS Pro or Anti-DDoS Premium instance for scrubbing or switches service traffic back to the associated cloud resources.
|
|
25925
26141
|
*
|
|
25926
26142
|
* @description You can call the SwitchSchedulerRule operation to modify the resources to which service traffic is switched for a scheduling rule. For example, you can switch service traffic to an Anti-DDoS Pro or Anti-DDoS Premium instance for scrubbing or switch the service traffic back to the associated cloud resources.
|
|
25927
26143
|
* Before you call this operation, you must have created a scheduling rule by calling the [CreateSchedulerRule](https://help.aliyun.com/document_detail/157479.html) operation.
|
|
@@ -25965,7 +26181,7 @@ export default class Client extends OpenApi {
|
|
|
25965
26181
|
}
|
|
25966
26182
|
|
|
25967
26183
|
/**
|
|
25968
|
-
* @summary Switches service traffic to
|
|
26184
|
+
* @summary Switches service traffic to an Anti-DDoS Pro or Anti-DDoS Premium instance for scrubbing or switches service traffic back to the associated cloud resources.
|
|
25969
26185
|
*
|
|
25970
26186
|
* @description You can call the SwitchSchedulerRule operation to modify the resources to which service traffic is switched for a scheduling rule. For example, you can switch service traffic to an Anti-DDoS Pro or Anti-DDoS Premium instance for scrubbing or switch the service traffic back to the associated cloud resources.
|
|
25971
26187
|
* Before you call this operation, you must have created a scheduling rule by calling the [CreateSchedulerRule](https://help.aliyun.com/document_detail/157479.html) operation.
|