@alicloud/ddoscoo20200101 2.6.0 → 3.0.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 +424 -62
- package/dist/client.js +338 -43
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +607 -62
package/dist/client.d.ts
CHANGED
|
@@ -3004,6 +3004,40 @@ export declare class DescribeInstancesResponseBodyInstances extends $dara.Model
|
|
|
3004
3004
|
[key: string]: any;
|
|
3005
3005
|
});
|
|
3006
3006
|
}
|
|
3007
|
+
export declare class DescribeL7GlobalRuleResponseBodyGlobalRules extends $dara.Model {
|
|
3008
|
+
/**
|
|
3009
|
+
* @example
|
|
3010
|
+
* watch
|
|
3011
|
+
*/
|
|
3012
|
+
action?: string;
|
|
3013
|
+
/**
|
|
3014
|
+
* @example
|
|
3015
|
+
* watch
|
|
3016
|
+
*/
|
|
3017
|
+
actionDefault?: string;
|
|
3018
|
+
description?: string;
|
|
3019
|
+
/**
|
|
3020
|
+
* @example
|
|
3021
|
+
* 1
|
|
3022
|
+
*/
|
|
3023
|
+
enabled?: number;
|
|
3024
|
+
/**
|
|
3025
|
+
* @example
|
|
3026
|
+
* global_1
|
|
3027
|
+
*/
|
|
3028
|
+
ruleId?: string;
|
|
3029
|
+
ruleName?: string;
|
|
3030
|
+
static names(): {
|
|
3031
|
+
[key: string]: string;
|
|
3032
|
+
};
|
|
3033
|
+
static types(): {
|
|
3034
|
+
[key: string]: any;
|
|
3035
|
+
};
|
|
3036
|
+
validate(): void;
|
|
3037
|
+
constructor(map?: {
|
|
3038
|
+
[key: string]: any;
|
|
3039
|
+
});
|
|
3040
|
+
}
|
|
3007
3041
|
export declare class DescribeL7RsPolicyResponseBodyAttributesAttribute extends $dara.Model {
|
|
3008
3042
|
/**
|
|
3009
3043
|
* @remarks
|
|
@@ -3674,6 +3708,16 @@ export declare class DescribeNetworkRulesResponseBodyNetworkRules extends $dara.
|
|
|
3674
3708
|
* true
|
|
3675
3709
|
*/
|
|
3676
3710
|
isAutoCreate?: boolean;
|
|
3711
|
+
/**
|
|
3712
|
+
* @remarks
|
|
3713
|
+
* Indicates whether the payload filtering rule is enabled. Valid values:
|
|
3714
|
+
*
|
|
3715
|
+
* * 1: enabled.
|
|
3716
|
+
* * 0: disabled.
|
|
3717
|
+
*
|
|
3718
|
+
* @example
|
|
3719
|
+
* 1
|
|
3720
|
+
*/
|
|
3677
3721
|
payloadRuleEnable?: number;
|
|
3678
3722
|
/**
|
|
3679
3723
|
* @remarks
|
|
@@ -3686,7 +3730,27 @@ export declare class DescribeNetworkRulesResponseBodyNetworkRules extends $dara.
|
|
|
3686
3730
|
* tcp
|
|
3687
3731
|
*/
|
|
3688
3732
|
protocol?: string;
|
|
3733
|
+
/**
|
|
3734
|
+
* @remarks
|
|
3735
|
+
* Indicates whether the traffic diversion switch is on. Valid values:
|
|
3736
|
+
*
|
|
3737
|
+
* * 0: on.
|
|
3738
|
+
* * 1: off.
|
|
3739
|
+
*
|
|
3740
|
+
* @example
|
|
3741
|
+
* 0
|
|
3742
|
+
*/
|
|
3689
3743
|
proxyEnable?: number;
|
|
3744
|
+
/**
|
|
3745
|
+
* @remarks
|
|
3746
|
+
* The status of traffic diversion. Valid values:
|
|
3747
|
+
*
|
|
3748
|
+
* * on: Traffic diversion takes effect.
|
|
3749
|
+
* * off: Traffic diversion does not take effect.
|
|
3750
|
+
*
|
|
3751
|
+
* @example
|
|
3752
|
+
* on
|
|
3753
|
+
*/
|
|
3690
3754
|
proxyStatus?: string;
|
|
3691
3755
|
/**
|
|
3692
3756
|
* @remarks
|
|
@@ -6279,6 +6343,12 @@ export declare class ModifyDomainResourceRequestProxyTypes extends $dara.Model {
|
|
|
6279
6343
|
export declare class AddAutoCcBlacklistRequest extends $dara.Model {
|
|
6280
6344
|
/**
|
|
6281
6345
|
* @remarks
|
|
6346
|
+
* The IP addresses that you want to manage. This parameter is a JSON string. The string contains the following field:
|
|
6347
|
+
*
|
|
6348
|
+
* * **src**: the IP address. This field is required and must be of the STRING type.
|
|
6349
|
+
*
|
|
6350
|
+
* > You can manually add up to 2,000 IP addresses to the IP address blacklist. Separate multiple IP addresses with spaces or line breaks.
|
|
6351
|
+
*
|
|
6282
6352
|
* This parameter is required.
|
|
6283
6353
|
*
|
|
6284
6354
|
* @example
|
|
@@ -6684,6 +6754,68 @@ export declare class ConfigDomainSecurityProfileResponse extends $dara.Model {
|
|
|
6684
6754
|
[key: string]: any;
|
|
6685
6755
|
});
|
|
6686
6756
|
}
|
|
6757
|
+
export declare class ConfigL7GlobalRuleRequest extends $dara.Model {
|
|
6758
|
+
/**
|
|
6759
|
+
* @remarks
|
|
6760
|
+
* This parameter is required.
|
|
6761
|
+
*
|
|
6762
|
+
* @example
|
|
6763
|
+
* example.com
|
|
6764
|
+
*/
|
|
6765
|
+
domain?: string;
|
|
6766
|
+
/**
|
|
6767
|
+
* @remarks
|
|
6768
|
+
* This parameter is required.
|
|
6769
|
+
*
|
|
6770
|
+
* @example
|
|
6771
|
+
* [{\\"RuleId\\":\\"global_01\\",\\"Action\\":\\"block\\",\\"Enabled\\":0}]
|
|
6772
|
+
*/
|
|
6773
|
+
ruleAttr?: string;
|
|
6774
|
+
static names(): {
|
|
6775
|
+
[key: string]: string;
|
|
6776
|
+
};
|
|
6777
|
+
static types(): {
|
|
6778
|
+
[key: string]: any;
|
|
6779
|
+
};
|
|
6780
|
+
validate(): void;
|
|
6781
|
+
constructor(map?: {
|
|
6782
|
+
[key: string]: any;
|
|
6783
|
+
});
|
|
6784
|
+
}
|
|
6785
|
+
export declare class ConfigL7GlobalRuleResponseBody extends $dara.Model {
|
|
6786
|
+
/**
|
|
6787
|
+
* @example
|
|
6788
|
+
* CF33B4C3-196E-4015-AADD-5CAD00057B80
|
|
6789
|
+
*/
|
|
6790
|
+
requestId?: string;
|
|
6791
|
+
static names(): {
|
|
6792
|
+
[key: string]: string;
|
|
6793
|
+
};
|
|
6794
|
+
static types(): {
|
|
6795
|
+
[key: string]: any;
|
|
6796
|
+
};
|
|
6797
|
+
validate(): void;
|
|
6798
|
+
constructor(map?: {
|
|
6799
|
+
[key: string]: any;
|
|
6800
|
+
});
|
|
6801
|
+
}
|
|
6802
|
+
export declare class ConfigL7GlobalRuleResponse extends $dara.Model {
|
|
6803
|
+
headers?: {
|
|
6804
|
+
[key: string]: string;
|
|
6805
|
+
};
|
|
6806
|
+
statusCode?: number;
|
|
6807
|
+
body?: ConfigL7GlobalRuleResponseBody;
|
|
6808
|
+
static names(): {
|
|
6809
|
+
[key: string]: string;
|
|
6810
|
+
};
|
|
6811
|
+
static types(): {
|
|
6812
|
+
[key: string]: any;
|
|
6813
|
+
};
|
|
6814
|
+
validate(): void;
|
|
6815
|
+
constructor(map?: {
|
|
6816
|
+
[key: string]: any;
|
|
6817
|
+
});
|
|
6818
|
+
}
|
|
6687
6819
|
export declare class ConfigL7RsPolicyRequest extends $dara.Model {
|
|
6688
6820
|
/**
|
|
6689
6821
|
* @remarks
|
|
@@ -8143,8 +8275,8 @@ export declare class CreateSceneDefensePolicyRequest extends $dara.Model {
|
|
|
8143
8275
|
* @remarks
|
|
8144
8276
|
* The template of the policy. Valid values:
|
|
8145
8277
|
*
|
|
8146
|
-
* * **promotion**: important activity
|
|
8147
|
-
* * **bypass**: all traffic forwarded
|
|
8278
|
+
* * **promotion**: important activity.
|
|
8279
|
+
* * **bypass**: all traffic forwarded.
|
|
8148
8280
|
*
|
|
8149
8281
|
* This parameter is required.
|
|
8150
8282
|
*
|
|
@@ -9099,7 +9231,7 @@ export declare class DeletePortRequest extends $dara.Model {
|
|
|
9099
9231
|
frontendPort?: string;
|
|
9100
9232
|
/**
|
|
9101
9233
|
* @remarks
|
|
9102
|
-
* The type of the protocol. Valid values:
|
|
9234
|
+
* The type of the forwarding protocol. Valid values:
|
|
9103
9235
|
*
|
|
9104
9236
|
* * **tcp**
|
|
9105
9237
|
* * **udp**
|
|
@@ -10576,6 +10708,10 @@ export declare class DescribeCertsResponse extends $dara.Model {
|
|
|
10576
10708
|
export declare class DescribeCnameReusesRequest extends $dara.Model {
|
|
10577
10709
|
/**
|
|
10578
10710
|
* @remarks
|
|
10711
|
+
* The domain names of the websites. You can specify the domain names of up to 200 websites.
|
|
10712
|
+
*
|
|
10713
|
+
* > A forwarding rule must be configured for a domain name. You can call the [DescribeDomains](https://help.aliyun.com/document_detail/91724.html) operation to query all domain names.
|
|
10714
|
+
*
|
|
10579
10715
|
* This parameter is required.
|
|
10580
10716
|
*
|
|
10581
10717
|
* @example
|
|
@@ -10829,7 +10965,7 @@ export declare class DescribeDDosAllEventListRequest extends $dara.Model {
|
|
|
10829
10965
|
export declare class DescribeDDosAllEventListResponseBody extends $dara.Model {
|
|
10830
10966
|
/**
|
|
10831
10967
|
* @remarks
|
|
10832
|
-
*
|
|
10968
|
+
* The DDoS attack events.
|
|
10833
10969
|
*/
|
|
10834
10970
|
attackEvents?: DescribeDDosAllEventListResponseBodyAttackEvents[];
|
|
10835
10971
|
/**
|
|
@@ -13513,6 +13649,7 @@ export declare class DescribeDomainViewTopUrlRequest extends $dara.Model {
|
|
|
13513
13649
|
* 1583683200
|
|
13514
13650
|
*/
|
|
13515
13651
|
endTime?: number;
|
|
13652
|
+
inerval?: number;
|
|
13516
13653
|
/**
|
|
13517
13654
|
* @remarks
|
|
13518
13655
|
* 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.
|
|
@@ -14749,6 +14886,66 @@ export declare class DescribeInstancesResponse extends $dara.Model {
|
|
|
14749
14886
|
[key: string]: any;
|
|
14750
14887
|
});
|
|
14751
14888
|
}
|
|
14889
|
+
export declare class DescribeL7GlobalRuleRequest extends $dara.Model {
|
|
14890
|
+
/**
|
|
14891
|
+
* @remarks
|
|
14892
|
+
* This parameter is required.
|
|
14893
|
+
*
|
|
14894
|
+
* @example
|
|
14895
|
+
* example.com
|
|
14896
|
+
*/
|
|
14897
|
+
domain?: string;
|
|
14898
|
+
/**
|
|
14899
|
+
* @example
|
|
14900
|
+
* zh
|
|
14901
|
+
*/
|
|
14902
|
+
lang?: string;
|
|
14903
|
+
static names(): {
|
|
14904
|
+
[key: string]: string;
|
|
14905
|
+
};
|
|
14906
|
+
static types(): {
|
|
14907
|
+
[key: string]: any;
|
|
14908
|
+
};
|
|
14909
|
+
validate(): void;
|
|
14910
|
+
constructor(map?: {
|
|
14911
|
+
[key: string]: any;
|
|
14912
|
+
});
|
|
14913
|
+
}
|
|
14914
|
+
export declare class DescribeL7GlobalRuleResponseBody extends $dara.Model {
|
|
14915
|
+
globalRules?: DescribeL7GlobalRuleResponseBodyGlobalRules[];
|
|
14916
|
+
/**
|
|
14917
|
+
* @example
|
|
14918
|
+
* CF33B4C3-196E-4015-AADD-5CAD00057B80
|
|
14919
|
+
*/
|
|
14920
|
+
requestId?: string;
|
|
14921
|
+
static names(): {
|
|
14922
|
+
[key: string]: string;
|
|
14923
|
+
};
|
|
14924
|
+
static types(): {
|
|
14925
|
+
[key: string]: any;
|
|
14926
|
+
};
|
|
14927
|
+
validate(): void;
|
|
14928
|
+
constructor(map?: {
|
|
14929
|
+
[key: string]: any;
|
|
14930
|
+
});
|
|
14931
|
+
}
|
|
14932
|
+
export declare class DescribeL7GlobalRuleResponse extends $dara.Model {
|
|
14933
|
+
headers?: {
|
|
14934
|
+
[key: string]: string;
|
|
14935
|
+
};
|
|
14936
|
+
statusCode?: number;
|
|
14937
|
+
body?: DescribeL7GlobalRuleResponseBody;
|
|
14938
|
+
static names(): {
|
|
14939
|
+
[key: string]: string;
|
|
14940
|
+
};
|
|
14941
|
+
static types(): {
|
|
14942
|
+
[key: string]: any;
|
|
14943
|
+
};
|
|
14944
|
+
validate(): void;
|
|
14945
|
+
constructor(map?: {
|
|
14946
|
+
[key: string]: any;
|
|
14947
|
+
});
|
|
14948
|
+
}
|
|
14752
14949
|
export declare class DescribeL7RsPolicyRequest extends $dara.Model {
|
|
14753
14950
|
/**
|
|
14754
14951
|
* @remarks
|
|
@@ -15329,7 +15526,7 @@ export declare class DescribeNetworkRulesRequest extends $dara.Model {
|
|
|
15329
15526
|
export declare class DescribeNetworkRulesResponseBody extends $dara.Model {
|
|
15330
15527
|
/**
|
|
15331
15528
|
* @remarks
|
|
15332
|
-
* The details of the port forwarding
|
|
15529
|
+
* The details of the port forwarding rules.
|
|
15333
15530
|
*/
|
|
15334
15531
|
networkRules?: DescribeNetworkRulesResponseBodyNetworkRules[];
|
|
15335
15532
|
/**
|
|
@@ -15635,7 +15832,7 @@ export declare class DescribePortAttackMaxFlowRequest extends $dara.Model {
|
|
|
15635
15832
|
endTime?: number;
|
|
15636
15833
|
/**
|
|
15637
15834
|
* @remarks
|
|
15638
|
-
*
|
|
15835
|
+
* The IDs of the Anti-DDoS Proxy instances to query.
|
|
15639
15836
|
*
|
|
15640
15837
|
* This parameter is required.
|
|
15641
15838
|
*
|
|
@@ -16270,9 +16467,9 @@ export declare class DescribePortMaxConnsRequest extends $dara.Model {
|
|
|
16270
16467
|
endTime?: number;
|
|
16271
16468
|
/**
|
|
16272
16469
|
* @remarks
|
|
16273
|
-
* The
|
|
16470
|
+
* The IDs of the Anti-DDoS Proxy instances.
|
|
16274
16471
|
*
|
|
16275
|
-
* >
|
|
16472
|
+
* > You can call the [DescribeInstanceIds](https://help.aliyun.com/document_detail/157459.html) operation to query the IDs of all Anti-DDoS Proxy instances.
|
|
16276
16473
|
*
|
|
16277
16474
|
* This parameter is required.
|
|
16278
16475
|
*
|
|
@@ -16314,7 +16511,7 @@ export declare class DescribePortMaxConnsRequest extends $dara.Model {
|
|
|
16314
16511
|
export declare class DescribePortMaxConnsResponseBody extends $dara.Model {
|
|
16315
16512
|
/**
|
|
16316
16513
|
* @remarks
|
|
16317
|
-
*
|
|
16514
|
+
* The details of the maximum number of connections that can be established over a port of the instance.
|
|
16318
16515
|
*/
|
|
16319
16516
|
portMaxConns?: DescribePortMaxConnsResponseBodyPortMaxConns[];
|
|
16320
16517
|
/**
|
|
@@ -16368,7 +16565,7 @@ export declare class DescribePortViewSourceCountriesRequest extends $dara.Model
|
|
|
16368
16565
|
endTime?: number;
|
|
16369
16566
|
/**
|
|
16370
16567
|
* @remarks
|
|
16371
|
-
*
|
|
16568
|
+
* The IDs of the Anti-DDoS Proxy instances to query.
|
|
16372
16569
|
*
|
|
16373
16570
|
* This parameter is required.
|
|
16374
16571
|
*
|
|
@@ -16378,9 +16575,9 @@ export declare class DescribePortViewSourceCountriesRequest extends $dara.Model
|
|
|
16378
16575
|
instanceIds?: string[];
|
|
16379
16576
|
/**
|
|
16380
16577
|
* @remarks
|
|
16381
|
-
* 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.
|
|
16578
|
+
* The ID of the resource group to which the Anti-DDoS Proxy instance belongs in Resource Management. This parameter is empty by default, which indicates that the instance belongs to the default resource group.
|
|
16382
16579
|
*
|
|
16383
|
-
* For
|
|
16580
|
+
* For information about resource groups, see [Create a resource group](https://help.aliyun.com/document_detail/94485.html).
|
|
16384
16581
|
*
|
|
16385
16582
|
* @example
|
|
16386
16583
|
* rg-acfm2pz25js****
|
|
@@ -16420,7 +16617,7 @@ export declare class DescribePortViewSourceCountriesResponseBody extends $dara.M
|
|
|
16420
16617
|
requestId?: string;
|
|
16421
16618
|
/**
|
|
16422
16619
|
* @remarks
|
|
16423
|
-
*
|
|
16620
|
+
* The details about the country or area from which the requests are sent.
|
|
16424
16621
|
*/
|
|
16425
16622
|
sourceCountrys?: DescribePortViewSourceCountriesResponseBodySourceCountrys[];
|
|
16426
16623
|
static names(): {
|
|
@@ -16466,7 +16663,7 @@ export declare class DescribePortViewSourceIspsRequest extends $dara.Model {
|
|
|
16466
16663
|
endTime?: number;
|
|
16467
16664
|
/**
|
|
16468
16665
|
* @remarks
|
|
16469
|
-
*
|
|
16666
|
+
* The IDs of the Anti-DDoS Proxy instances to query.
|
|
16470
16667
|
*
|
|
16471
16668
|
* This parameter is required.
|
|
16472
16669
|
*
|
|
@@ -16476,9 +16673,9 @@ export declare class DescribePortViewSourceIspsRequest extends $dara.Model {
|
|
|
16476
16673
|
instanceIds?: string[];
|
|
16477
16674
|
/**
|
|
16478
16675
|
* @remarks
|
|
16479
|
-
* The ID of the resource group to which the instance belongs in Resource Management.
|
|
16676
|
+
* The ID of the resource group to which the Anti-DDoS Proxy instance belongs in Resource Management.
|
|
16480
16677
|
*
|
|
16481
|
-
* If you do not
|
|
16678
|
+
* If you do not specify this parameter, the instance belongs to the default resource group.
|
|
16482
16679
|
*
|
|
16483
16680
|
* @example
|
|
16484
16681
|
* rg-acfm2pz25js****
|
|
@@ -16562,7 +16759,7 @@ export declare class DescribePortViewSourceProvincesRequest extends $dara.Model
|
|
|
16562
16759
|
endTime?: number;
|
|
16563
16760
|
/**
|
|
16564
16761
|
* @remarks
|
|
16565
|
-
* The IDs of instances to query.
|
|
16762
|
+
* The IDs of the Anti-DDoS Proxy instances to query.
|
|
16566
16763
|
*
|
|
16567
16764
|
* This parameter is required.
|
|
16568
16765
|
*
|
|
@@ -16572,9 +16769,9 @@ export declare class DescribePortViewSourceProvincesRequest extends $dara.Model
|
|
|
16572
16769
|
instanceIds?: string[];
|
|
16573
16770
|
/**
|
|
16574
16771
|
* @remarks
|
|
16575
|
-
* 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.
|
|
16772
|
+
* The ID of the resource group to which the Anti-DDoS Proxy instance belongs in Resource Management. This parameter is empty by default, which indicates that the Anti-DDoS Origin instance belongs to the default resource group.
|
|
16576
16773
|
*
|
|
16577
|
-
* For
|
|
16774
|
+
* For information about resource groups, see [Create a resource group](https://help.aliyun.com/document_detail/94485.html).
|
|
16578
16775
|
*
|
|
16579
16776
|
* @example
|
|
16580
16777
|
* rg-acfm2pz25js****
|
|
@@ -16614,7 +16811,7 @@ export declare class DescribePortViewSourceProvincesResponseBody extends $dara.M
|
|
|
16614
16811
|
requestId?: string;
|
|
16615
16812
|
/**
|
|
16616
16813
|
* @remarks
|
|
16617
|
-
*
|
|
16814
|
+
* The details of the administrative region in China from which the requests are sent.
|
|
16618
16815
|
*/
|
|
16619
16816
|
sourceProvinces?: DescribePortViewSourceProvincesResponseBodySourceProvinces[];
|
|
16620
16817
|
static names(): {
|
|
@@ -17716,7 +17913,7 @@ export declare class DescribeTotalAttackMaxFlowRequest extends $dara.Model {
|
|
|
17716
17913
|
endTime?: number;
|
|
17717
17914
|
/**
|
|
17718
17915
|
* @remarks
|
|
17719
|
-
* The IDs of the instances. Separate multiple instance IDs with commas (,). Example: InstanceIds.1, InstanceIds.2, InstanceIds.3.
|
|
17916
|
+
* The IDs of the Anti-DDoS Proxy instances. Separate multiple instance IDs with commas (,). Example: InstanceIds.1, InstanceIds.2, InstanceIds.3.
|
|
17720
17917
|
*
|
|
17721
17918
|
* This parameter is required.
|
|
17722
17919
|
*/
|
|
@@ -17763,7 +17960,7 @@ export declare class DescribeTotalAttackMaxFlowResponseBody extends $dara.Model
|
|
|
17763
17960
|
bps?: number;
|
|
17764
17961
|
/**
|
|
17765
17962
|
* @remarks
|
|
17766
|
-
* The peak packet rate of attack traffic
|
|
17963
|
+
* The peak packet rate of attack traffic. Unit: packets per second (pps).
|
|
17767
17964
|
*
|
|
17768
17965
|
* @example
|
|
17769
17966
|
* 0
|
|
@@ -18835,9 +19032,9 @@ export declare class DescribeWebCustomPortsResponse extends $dara.Model {
|
|
|
18835
19032
|
export declare class DescribeWebInstanceRelationsRequest extends $dara.Model {
|
|
18836
19033
|
/**
|
|
18837
19034
|
* @remarks
|
|
18838
|
-
* The domain names of the website.
|
|
19035
|
+
* The domain names of the website.
|
|
18839
19036
|
*
|
|
18840
|
-
* >
|
|
19037
|
+
* > A forwarding rule must be configured for the domain names. You can call the [DescribeDomains](https://help.aliyun.com/document_detail/91724.html) operation to query all domain names.
|
|
18841
19038
|
*
|
|
18842
19039
|
* This parameter is required.
|
|
18843
19040
|
*
|
|
@@ -19019,7 +19216,7 @@ export declare class DescribeWebReportTopIpRequest extends $dara.Model {
|
|
|
19019
19216
|
interval?: number;
|
|
19020
19217
|
/**
|
|
19021
19218
|
* @remarks
|
|
19022
|
-
* The source of the statistics. Valid
|
|
19219
|
+
* The source of the statistics. Valid values:
|
|
19023
19220
|
*
|
|
19024
19221
|
* * **visit**: indicates all IP addresses.
|
|
19025
19222
|
* * **block**: indicates blocked IP addresses.
|
|
@@ -19064,7 +19261,7 @@ export declare class DescribeWebReportTopIpRequest extends $dara.Model {
|
|
|
19064
19261
|
export declare class DescribeWebReportTopIpResponseBody extends $dara.Model {
|
|
19065
19262
|
/**
|
|
19066
19263
|
* @remarks
|
|
19067
|
-
* The
|
|
19264
|
+
* The information about the IP addresses.
|
|
19068
19265
|
*/
|
|
19069
19266
|
dataList?: DescribeWebReportTopIpResponseBodyDataList[];
|
|
19070
19267
|
/**
|
|
@@ -19852,7 +20049,7 @@ export declare class EnableWebAccessLogConfigRequest extends $dara.Model {
|
|
|
19852
20049
|
* @remarks
|
|
19853
20050
|
* The domain name of the website.
|
|
19854
20051
|
*
|
|
19855
|
-
* >
|
|
20052
|
+
* > A forwarding rule must be configured for the domain name. You can call the [DescribeDomains](https://help.aliyun.com/document_detail/474212.html) operation to query all domain names.
|
|
19856
20053
|
*
|
|
19857
20054
|
* This parameter is required.
|
|
19858
20055
|
*
|
|
@@ -21104,37 +21301,66 @@ export declare class ModifyHttp2EnableResponse extends $dara.Model {
|
|
|
21104
21301
|
}
|
|
21105
21302
|
export declare class ModifyInstanceRequest extends $dara.Model {
|
|
21106
21303
|
/**
|
|
21304
|
+
* @remarks
|
|
21305
|
+
* Address type. Values:
|
|
21306
|
+
* - **Ipv4**: IPv4.
|
|
21307
|
+
* - **Ipv6**: IPv6.
|
|
21308
|
+
*
|
|
21107
21309
|
* @example
|
|
21108
21310
|
* Ipv4
|
|
21109
21311
|
*/
|
|
21110
21312
|
addressType?: string;
|
|
21111
21313
|
/**
|
|
21314
|
+
* @remarks
|
|
21315
|
+
* Elastic protection bandwidth (Mainland China). Unit: Gbps.
|
|
21316
|
+
*
|
|
21112
21317
|
* @example
|
|
21113
21318
|
* 30
|
|
21114
21319
|
*/
|
|
21115
21320
|
bandwidth?: string;
|
|
21116
21321
|
/**
|
|
21322
|
+
* @remarks
|
|
21323
|
+
* Guaranteed protection bandwidth (Mainland China). Unit: Gbps.
|
|
21324
|
+
*
|
|
21117
21325
|
* @example
|
|
21118
21326
|
* 30
|
|
21119
21327
|
*/
|
|
21120
21328
|
baseBandwidth?: string;
|
|
21121
21329
|
/**
|
|
21330
|
+
* @remarks
|
|
21331
|
+
* Number of protected domains.
|
|
21332
|
+
*
|
|
21122
21333
|
* @example
|
|
21123
21334
|
* 50
|
|
21124
21335
|
*/
|
|
21125
21336
|
domainCount?: string;
|
|
21126
21337
|
/**
|
|
21338
|
+
* @remarks
|
|
21339
|
+
* Protection package (Mainland China). Values:
|
|
21340
|
+
*
|
|
21341
|
+
* - **coop**: Indicates the DDoS High Defense (Mainland China) Professional Edition.
|
|
21342
|
+
* - **advance**: Indicates the DDoS High Defense (Mainland China) Professional Edition.
|
|
21343
|
+
*
|
|
21127
21344
|
* @example
|
|
21128
21345
|
* coop
|
|
21129
21346
|
*/
|
|
21130
21347
|
editionSale?: string;
|
|
21131
21348
|
/**
|
|
21349
|
+
* @remarks
|
|
21350
|
+
* Function version, with values:
|
|
21351
|
+
*
|
|
21352
|
+
* - **0**: Standard function.
|
|
21353
|
+
* - **1**: Enhanced function.
|
|
21354
|
+
*
|
|
21132
21355
|
* @example
|
|
21133
21356
|
* 0
|
|
21134
21357
|
*/
|
|
21135
21358
|
functionVersion?: string;
|
|
21136
21359
|
/**
|
|
21137
21360
|
* @remarks
|
|
21361
|
+
* The ID of the DDoS High Defense instance.
|
|
21362
|
+
* > You can call [DescribeInstanceIds](https://help.aliyun.com/document_detail/157459.html) to query the ID information of all DDoS High Defense instances.
|
|
21363
|
+
*
|
|
21138
21364
|
* This parameter is required.
|
|
21139
21365
|
*
|
|
21140
21366
|
* @example
|
|
@@ -21143,6 +21369,10 @@ export declare class ModifyInstanceRequest extends $dara.Model {
|
|
|
21143
21369
|
instanceId?: string;
|
|
21144
21370
|
/**
|
|
21145
21371
|
* @remarks
|
|
21372
|
+
* Adjustment type, with values
|
|
21373
|
+
* - UPGRADE: Upgrade.
|
|
21374
|
+
* - DOWNGRADE: Downgrade.
|
|
21375
|
+
*
|
|
21146
21376
|
* This parameter is required.
|
|
21147
21377
|
*
|
|
21148
21378
|
* @example
|
|
@@ -21150,27 +21380,51 @@ export declare class ModifyInstanceRequest extends $dara.Model {
|
|
|
21150
21380
|
*/
|
|
21151
21381
|
modifyType?: string;
|
|
21152
21382
|
/**
|
|
21383
|
+
* @remarks
|
|
21384
|
+
* Business bandwidth (outside Mainland China). Unit: Mbps.
|
|
21385
|
+
*
|
|
21153
21386
|
* @example
|
|
21154
21387
|
* 200
|
|
21155
21388
|
*/
|
|
21156
21389
|
normalBandwidth?: string;
|
|
21157
21390
|
/**
|
|
21391
|
+
* @remarks
|
|
21392
|
+
* Business QPS. Unit: Mbps.
|
|
21393
|
+
*
|
|
21158
21394
|
* @example
|
|
21159
21395
|
* 100
|
|
21160
21396
|
*/
|
|
21161
21397
|
normalQps?: string;
|
|
21162
21398
|
/**
|
|
21399
|
+
* @remarks
|
|
21400
|
+
* Number of protected ports.
|
|
21401
|
+
*
|
|
21163
21402
|
* @example
|
|
21164
21403
|
* 50
|
|
21165
21404
|
*/
|
|
21166
21405
|
portCount?: string;
|
|
21167
21406
|
/**
|
|
21407
|
+
* @remarks
|
|
21408
|
+
* Protection package (outside Mainland China). Values:
|
|
21409
|
+
*
|
|
21410
|
+
* - **0**: Indicates the DDoS High Defense (outside Mainland China) Insurance Edition.
|
|
21411
|
+
* - **1**: Indicates the DDoS High Defense (outside Mainland China) Worry-Free Edition.
|
|
21412
|
+
* - **2**: Indicates the DDoS High Defense (outside Mainland China) Acceleration Line.
|
|
21413
|
+
* - **3**: Indicates the DDoS High Defense (outside Mainland China) Secure Acceleration Line.
|
|
21414
|
+
*
|
|
21168
21415
|
* @example
|
|
21169
21416
|
* 0
|
|
21170
21417
|
*/
|
|
21171
21418
|
productPlan?: string;
|
|
21172
21419
|
/**
|
|
21173
21420
|
* @remarks
|
|
21421
|
+
* Product type.
|
|
21422
|
+
* Values:
|
|
21423
|
+
*
|
|
21424
|
+
* - **ddoscoo**: Indicates that the DDoS High Defense (Mainland China) instance is being adjusted for a China site account.
|
|
21425
|
+
* - **ddoscoo_intl**: Indicates that the DDoS High Defense (Mainland China) instance is being adjusted for an international site account.
|
|
21426
|
+
* - **ddosDip**: Indicates that the DDoS High Defense (outside Mainland China) instance is being adjusted for either a China or international site account.
|
|
21427
|
+
*
|
|
21174
21428
|
* This parameter is required.
|
|
21175
21429
|
*
|
|
21176
21430
|
* @example
|
|
@@ -21178,11 +21432,19 @@ export declare class ModifyInstanceRequest extends $dara.Model {
|
|
|
21178
21432
|
*/
|
|
21179
21433
|
productType?: string;
|
|
21180
21434
|
/**
|
|
21435
|
+
* @remarks
|
|
21436
|
+
* Business bandwidth (Mainland China). Unit: Mbps.
|
|
21437
|
+
*
|
|
21181
21438
|
* @example
|
|
21182
21439
|
* 300
|
|
21183
21440
|
*/
|
|
21184
21441
|
serviceBandwidth?: string;
|
|
21185
21442
|
/**
|
|
21443
|
+
* @remarks
|
|
21444
|
+
* Line resources of the instance (Mainland China). Values:
|
|
21445
|
+
*
|
|
21446
|
+
* - **coop-line-001**: Indicates the DDoS High Defense (Mainland China) 8-line BGP line.
|
|
21447
|
+
*
|
|
21186
21448
|
* @example
|
|
21187
21449
|
* coop-line-001
|
|
21188
21450
|
*/
|
|
@@ -21200,11 +21462,17 @@ export declare class ModifyInstanceRequest extends $dara.Model {
|
|
|
21200
21462
|
}
|
|
21201
21463
|
export declare class ModifyInstanceResponseBody extends $dara.Model {
|
|
21202
21464
|
/**
|
|
21465
|
+
* @remarks
|
|
21466
|
+
* Order ID.
|
|
21467
|
+
*
|
|
21203
21468
|
* @example
|
|
21204
21469
|
* 242461444340562
|
|
21205
21470
|
*/
|
|
21206
21471
|
orderId?: number;
|
|
21207
21472
|
/**
|
|
21473
|
+
* @remarks
|
|
21474
|
+
* The ID of this request, which is a unique identifier generated by Alibaba Cloud for this request and can be used for troubleshooting and problem localization.
|
|
21475
|
+
*
|
|
21208
21476
|
* @example
|
|
21209
21477
|
* 0018DF77-7189-5D33-947B-E5B34BFCE07E
|
|
21210
21478
|
*/
|
|
@@ -21448,10 +21716,13 @@ export declare class ModifyOcspStatusRequest extends $dara.Model {
|
|
|
21448
21716
|
* @remarks
|
|
21449
21717
|
* Specifies whether to enable the OCSP feature. Valid values:
|
|
21450
21718
|
*
|
|
21451
|
-
* * **1**: yes
|
|
21452
|
-
* * **0**: no
|
|
21719
|
+
* * **1**: yes.
|
|
21720
|
+
* * **0**: no.
|
|
21453
21721
|
*
|
|
21454
21722
|
* This parameter is required.
|
|
21723
|
+
*
|
|
21724
|
+
* @example
|
|
21725
|
+
* 1
|
|
21455
21726
|
*/
|
|
21456
21727
|
enable?: number;
|
|
21457
21728
|
static names(): {
|
|
@@ -21813,8 +22084,8 @@ export declare class ModifySceneDefensePolicyRequest extends $dara.Model {
|
|
|
21813
22084
|
* @remarks
|
|
21814
22085
|
* The template of the policy. Valid values:
|
|
21815
22086
|
*
|
|
21816
|
-
* * **promotion**: important activity
|
|
21817
|
-
* * **bypass**: all traffic forwarded
|
|
22087
|
+
* * **promotion**: important activity.
|
|
22088
|
+
* * **bypass**: all traffic forwarded.
|
|
21818
22089
|
*
|
|
21819
22090
|
* This parameter is required.
|
|
21820
22091
|
*
|
|
@@ -22147,7 +22418,7 @@ export declare class ModifyWebAIProtectModeRequest extends $dara.Model {
|
|
|
22147
22418
|
* @remarks
|
|
22148
22419
|
* The domain name of the website.
|
|
22149
22420
|
*
|
|
22150
|
-
* >
|
|
22421
|
+
* > A forwarding rule must be configured for the domain name. You can call the [DescribeDomains](https://help.aliyun.com/document_detail/474212.html) operation to query all domain names.
|
|
22151
22422
|
*
|
|
22152
22423
|
* This parameter is required.
|
|
22153
22424
|
*
|
|
@@ -23277,6 +23548,10 @@ export declare class ModifyWebPreciseAccessSwitchResponse extends $dara.Model {
|
|
|
23277
23548
|
export declare class ModifyWebRuleRequest extends $dara.Model {
|
|
23278
23549
|
/**
|
|
23279
23550
|
* @remarks
|
|
23551
|
+
* The domain name of the website.
|
|
23552
|
+
*
|
|
23553
|
+
* > A forwarding rule must be configured for the domain name. You can call the [DescribeDomains](https://help.aliyun.com/document_detail/91724.html) operation to query the domain names for which forwarding rules are configured.
|
|
23554
|
+
*
|
|
23280
23555
|
* This parameter is required.
|
|
23281
23556
|
*
|
|
23282
23557
|
* @example
|
|
@@ -23284,6 +23559,21 @@ export declare class ModifyWebRuleRequest extends $dara.Model {
|
|
|
23284
23559
|
*/
|
|
23285
23560
|
domain?: string;
|
|
23286
23561
|
/**
|
|
23562
|
+
* @remarks
|
|
23563
|
+
* The advanced HTTPS settings. This parameter takes effect only when the value of **ProxyType** includes **https**. The value is a string that consists of a JSON struct. The JSON struct contains the following fields:
|
|
23564
|
+
*
|
|
23565
|
+
* * **Http2https**: specifies whether to turn on Enforce HTTPS Routing. This field is optional and must be an integer. Valid values: **0** and **1**. The value 0 indicates that Enforce HTTPS Routing is turned off. The value 1 indicates that Enforce HTTPS Routing is turned on. The default value is 0.
|
|
23566
|
+
*
|
|
23567
|
+
* If your website supports both HTTP and HTTPS, this feature suits your needs. If you turn on the switch, all HTTP requests are redirected to HTTPS requests on port 443 by default.
|
|
23568
|
+
*
|
|
23569
|
+
* * **Https2http**: specifies whether to turn on Enable HTTP. This field is optional and must be an integer. Valid values: **0** and **1**. The value 0 indicates that Enable HTTP is turned off. The value 1 indicates that Enable HTTP is turned on. The default value is 0.
|
|
23570
|
+
*
|
|
23571
|
+
* If your website does not support HTTPS, this feature suits your needs. If you turn on the switch, all HTTPS requests are redirected to HTTP requests and forwarded to origin servers. The feature can also redirect WebSockets requests to WebSocket requests. All requests are redirected over port 80.
|
|
23572
|
+
*
|
|
23573
|
+
* * **Http2**: specifies whether to turn on Enable HTTP/2. This field is optional and must be an integer. Valid values: **0** and **1**. The value 0 indicates that Enable HTTP/2 is turned off. The value 1 indicates that Enable HTTP/2 is turned on. The default value is 0.
|
|
23574
|
+
*
|
|
23575
|
+
* After you turn on the switch, the protocol type is HTTP/2.
|
|
23576
|
+
*
|
|
23287
23577
|
* @example
|
|
23288
23578
|
* {"Http2":1,"Http2https":1,"Https2http":1}
|
|
23289
23579
|
*/
|
|
@@ -23295,6 +23585,11 @@ export declare class ModifyWebRuleRequest extends $dara.Model {
|
|
|
23295
23585
|
instanceIds?: string[];
|
|
23296
23586
|
/**
|
|
23297
23587
|
* @remarks
|
|
23588
|
+
* The protocol of the forwarding rule. The value is a string that consists of JSON arrays. Each element in a JSON array is a JSON struct that contains the following fields:
|
|
23589
|
+
*
|
|
23590
|
+
* * **ProxyType**: the protocol type. This field is required and must be a string. Valid values: **http**, **https**, **websocket**, and **websockets**.
|
|
23591
|
+
* * **ProxyPort**: the port number. This field is required and must be an array.
|
|
23592
|
+
*
|
|
23298
23593
|
* This parameter is required.
|
|
23299
23594
|
*
|
|
23300
23595
|
* @example
|
|
@@ -23310,12 +23605,22 @@ export declare class ModifyWebRuleRequest extends $dara.Model {
|
|
|
23310
23605
|
*/
|
|
23311
23606
|
realServers?: string[];
|
|
23312
23607
|
/**
|
|
23608
|
+
* @remarks
|
|
23609
|
+
* 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.
|
|
23610
|
+
*
|
|
23611
|
+
* For more information about resource groups, see [Create a resource group](https://help.aliyun.com/document_detail/94485.html).
|
|
23612
|
+
*
|
|
23313
23613
|
* @example
|
|
23314
23614
|
* rg-acfm2pz25js****
|
|
23315
23615
|
*/
|
|
23316
23616
|
resourceGroupId?: string;
|
|
23317
23617
|
/**
|
|
23318
23618
|
* @remarks
|
|
23619
|
+
* The address type of the origin server. Valid values:
|
|
23620
|
+
*
|
|
23621
|
+
* * **0**: IP address.
|
|
23622
|
+
* * **1**: domain name. Use the domain name of the origin server if you deploy proxies, such as Web Application Firewall (WAF), between the origin server and the Anti-DDoS Pro or Anti-DDoS Premium instance. If you use the domain name, you must enter the address of the proxy, such as the CNAME of WAF.
|
|
23623
|
+
*
|
|
23319
23624
|
* This parameter is required.
|
|
23320
23625
|
*
|
|
23321
23626
|
* @example
|
|
@@ -23335,6 +23640,9 @@ export declare class ModifyWebRuleRequest extends $dara.Model {
|
|
|
23335
23640
|
}
|
|
23336
23641
|
export declare class ModifyWebRuleResponseBody extends $dara.Model {
|
|
23337
23642
|
/**
|
|
23643
|
+
* @remarks
|
|
23644
|
+
* The ID of the request.
|
|
23645
|
+
*
|
|
23338
23646
|
* @example
|
|
23339
23647
|
* CB3261D2-7D1B-4ADA-9E98-A200B2CDA2DC
|
|
23340
23648
|
*/
|
|
@@ -23607,6 +23915,21 @@ export default class Client extends OpenApi {
|
|
|
23607
23915
|
* @returns ConfigDomainSecurityProfileResponse
|
|
23608
23916
|
*/
|
|
23609
23917
|
configDomainSecurityProfile(request: ConfigDomainSecurityProfileRequest): Promise<ConfigDomainSecurityProfileResponse>;
|
|
23918
|
+
/**
|
|
23919
|
+
* 配置全局模板规则
|
|
23920
|
+
*
|
|
23921
|
+
* @param request - ConfigL7GlobalRuleRequest
|
|
23922
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23923
|
+
* @returns ConfigL7GlobalRuleResponse
|
|
23924
|
+
*/
|
|
23925
|
+
configL7GlobalRuleWithOptions(request: ConfigL7GlobalRuleRequest, runtime: $dara.RuntimeOptions): Promise<ConfigL7GlobalRuleResponse>;
|
|
23926
|
+
/**
|
|
23927
|
+
* 配置全局模板规则
|
|
23928
|
+
*
|
|
23929
|
+
* @param request - ConfigL7GlobalRuleRequest
|
|
23930
|
+
* @returns ConfigL7GlobalRuleResponse
|
|
23931
|
+
*/
|
|
23932
|
+
configL7GlobalRule(request: ConfigL7GlobalRuleRequest): Promise<ConfigL7GlobalRuleResponse>;
|
|
23610
23933
|
/**
|
|
23611
23934
|
* Configures a back-to-origin policy for the forwarding rule of a website.
|
|
23612
23935
|
*
|
|
@@ -23989,7 +24312,7 @@ export default class Client extends OpenApi {
|
|
|
23989
24312
|
*/
|
|
23990
24313
|
deleteAutoCcBlacklist(request: DeleteAutoCcBlacklistRequest): Promise<DeleteAutoCcBlacklistResponse>;
|
|
23991
24314
|
/**
|
|
23992
|
-
* Removes IP addresses from the IP address whitelist of an Anti-DDoS
|
|
24315
|
+
* Removes IP addresses from the IP address whitelist of an Anti-DDoS Proxy instance.
|
|
23993
24316
|
*
|
|
23994
24317
|
* @param request - DeleteAutoCcWhitelistRequest
|
|
23995
24318
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23997,7 +24320,7 @@ export default class Client extends OpenApi {
|
|
|
23997
24320
|
*/
|
|
23998
24321
|
deleteAutoCcWhitelistWithOptions(request: DeleteAutoCcWhitelistRequest, runtime: $dara.RuntimeOptions): Promise<DeleteAutoCcWhitelistResponse>;
|
|
23999
24322
|
/**
|
|
24000
|
-
* Removes IP addresses from the IP address whitelist of an Anti-DDoS
|
|
24323
|
+
* Removes IP addresses from the IP address whitelist of an Anti-DDoS Proxy instance.
|
|
24001
24324
|
*
|
|
24002
24325
|
* @param request - DeleteAutoCcWhitelistRequest
|
|
24003
24326
|
* @returns DeleteAutoCcWhitelistResponse
|
|
@@ -24258,7 +24581,7 @@ export default class Client extends OpenApi {
|
|
|
24258
24581
|
*/
|
|
24259
24582
|
describeAutoCcBlacklist(request: DescribeAutoCcBlacklistRequest): Promise<DescribeAutoCcBlacklistResponse>;
|
|
24260
24583
|
/**
|
|
24261
|
-
* Queries the numbers of IP addresses in the IP address whitelist and IP address blacklist of an Anti-DDoS
|
|
24584
|
+
* Queries the numbers of IP addresses in the IP address whitelist and IP address blacklist of an Anti-DDoS Proxy instance.
|
|
24262
24585
|
*
|
|
24263
24586
|
* @param request - DescribeAutoCcListCountRequest
|
|
24264
24587
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24266,14 +24589,14 @@ export default class Client extends OpenApi {
|
|
|
24266
24589
|
*/
|
|
24267
24590
|
describeAutoCcListCountWithOptions(request: DescribeAutoCcListCountRequest, runtime: $dara.RuntimeOptions): Promise<DescribeAutoCcListCountResponse>;
|
|
24268
24591
|
/**
|
|
24269
|
-
* Queries the numbers of IP addresses in the IP address whitelist and IP address blacklist of an Anti-DDoS
|
|
24592
|
+
* Queries the numbers of IP addresses in the IP address whitelist and IP address blacklist of an Anti-DDoS Proxy instance.
|
|
24270
24593
|
*
|
|
24271
24594
|
* @param request - DescribeAutoCcListCountRequest
|
|
24272
24595
|
* @returns DescribeAutoCcListCountResponse
|
|
24273
24596
|
*/
|
|
24274
24597
|
describeAutoCcListCount(request: DescribeAutoCcListCountRequest): Promise<DescribeAutoCcListCountResponse>;
|
|
24275
24598
|
/**
|
|
24276
|
-
* Queries IP addresses in the IP address whitelist of an Anti-DDoS
|
|
24599
|
+
* Queries IP addresses in the IP address whitelist of an Anti-DDoS Proxy instance.
|
|
24277
24600
|
*
|
|
24278
24601
|
* @param request - DescribeAutoCcWhitelistRequest
|
|
24279
24602
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24281,7 +24604,7 @@ export default class Client extends OpenApi {
|
|
|
24281
24604
|
*/
|
|
24282
24605
|
describeAutoCcWhitelistWithOptions(request: DescribeAutoCcWhitelistRequest, runtime: $dara.RuntimeOptions): Promise<DescribeAutoCcWhitelistResponse>;
|
|
24283
24606
|
/**
|
|
24284
|
-
* Queries IP addresses in the IP address whitelist of an Anti-DDoS
|
|
24607
|
+
* Queries IP addresses in the IP address whitelist of an Anti-DDoS Proxy instance.
|
|
24285
24608
|
*
|
|
24286
24609
|
* @param request - DescribeAutoCcWhitelistRequest
|
|
24287
24610
|
* @returns DescribeAutoCcWhitelistResponse
|
|
@@ -24345,7 +24668,11 @@ export default class Client extends OpenApi {
|
|
|
24345
24668
|
*/
|
|
24346
24669
|
describeBlockStatus(request: DescribeBlockStatusRequest): Promise<DescribeBlockStatusResponse>;
|
|
24347
24670
|
/**
|
|
24348
|
-
* Queries information about all certificates that can be associated with the current domain name instead of the certificate currently in use.
|
|
24671
|
+
* Queries information about all certificates that can be associated with the current domain name instead of the certificate currently in use.
|
|
24672
|
+
*
|
|
24673
|
+
* @remarks
|
|
24674
|
+
* This operation is used to query all applicable certificates of a domain name that you want to add to Anti-DDoS Proxy. Multiple certificates may be queried for a domain name. You can use an exact domain name to query exact-domain certificates or wildcard-domain certificates.
|
|
24675
|
+
* > If you want to query the certificate that is in use for the current domain name, you can call the [DescribeWebRules](https://help.aliyun.com/document_detail/473610.html) operation to obtain the values of the CertName and CertRegion parameters. Then, you can call the [ListUserCertificateOrder](https://help.aliyun.com/document_detail/411733.html) operation of Certificate Management Service to query the ID and other details of the certificate by using the value of the CertName parameter.
|
|
24349
24676
|
*
|
|
24350
24677
|
* @param request - DescribeCertsRequest
|
|
24351
24678
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24353,7 +24680,11 @@ export default class Client extends OpenApi {
|
|
|
24353
24680
|
*/
|
|
24354
24681
|
describeCertsWithOptions(request: DescribeCertsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeCertsResponse>;
|
|
24355
24682
|
/**
|
|
24356
|
-
* Queries information about all certificates that can be associated with the current domain name instead of the certificate currently in use.
|
|
24683
|
+
* Queries information about all certificates that can be associated with the current domain name instead of the certificate currently in use.
|
|
24684
|
+
*
|
|
24685
|
+
* @remarks
|
|
24686
|
+
* This operation is used to query all applicable certificates of a domain name that you want to add to Anti-DDoS Proxy. Multiple certificates may be queried for a domain name. You can use an exact domain name to query exact-domain certificates or wildcard-domain certificates.
|
|
24687
|
+
* > If you want to query the certificate that is in use for the current domain name, you can call the [DescribeWebRules](https://help.aliyun.com/document_detail/473610.html) operation to obtain the values of the CertName and CertRegion parameters. Then, you can call the [ListUserCertificateOrder](https://help.aliyun.com/document_detail/411733.html) operation of Certificate Management Service to query the ID and other details of the certificate by using the value of the CertName parameter.
|
|
24357
24688
|
*
|
|
24358
24689
|
* @param request - DescribeCertsRequest
|
|
24359
24690
|
* @returns DescribeCertsResponse
|
|
@@ -24386,7 +24717,7 @@ export default class Client extends OpenApi {
|
|
|
24386
24717
|
*/
|
|
24387
24718
|
describeDDoSEvents(request: DescribeDDoSEventsRequest): Promise<DescribeDDoSEventsResponse>;
|
|
24388
24719
|
/**
|
|
24389
|
-
*
|
|
24720
|
+
* Queries DDoS attack events.
|
|
24390
24721
|
*
|
|
24391
24722
|
* @remarks
|
|
24392
24723
|
* You can call the DescribeDDosAllEventList operation to query DDoS attack events within a specific time range by page. The information about a DDoS attack event includes the start time and end time of the attack, attack event type, attacked object, peak bandwidth of attack traffic, and peak packet forwarding rate.
|
|
@@ -24399,7 +24730,7 @@ export default class Client extends OpenApi {
|
|
|
24399
24730
|
*/
|
|
24400
24731
|
describeDDosAllEventListWithOptions(request: DescribeDDosAllEventListRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDDosAllEventListResponse>;
|
|
24401
24732
|
/**
|
|
24402
|
-
*
|
|
24733
|
+
* Queries DDoS attack events.
|
|
24403
24734
|
*
|
|
24404
24735
|
* @remarks
|
|
24405
24736
|
* You can call the DescribeDDosAllEventList operation to query DDoS attack events within a specific time range by page. The information about a DDoS attack event includes the start time and end time of the attack, attack event type, attacked object, peak bandwidth of attack traffic, and peak packet forwarding rate.
|
|
@@ -24537,7 +24868,7 @@ export default class Client extends OpenApi {
|
|
|
24537
24868
|
*/
|
|
24538
24869
|
describeDefenseCountStatistics(request: DescribeDefenseCountStatisticsRequest): Promise<DescribeDefenseCountStatisticsResponse>;
|
|
24539
24870
|
/**
|
|
24540
|
-
* Queries the advanced mitigation logs of Anti-DDoS
|
|
24871
|
+
* Queries the advanced mitigation logs of an Anti-DDoS Proxy (Outside Chinese Mainland) instance.
|
|
24541
24872
|
*
|
|
24542
24873
|
* @remarks
|
|
24543
24874
|
* > This operation is suitable only for Anti-DDoS Premium.
|
|
@@ -24548,7 +24879,7 @@ export default class Client extends OpenApi {
|
|
|
24548
24879
|
*/
|
|
24549
24880
|
describeDefenseRecordsWithOptions(request: DescribeDefenseRecordsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDefenseRecordsResponse>;
|
|
24550
24881
|
/**
|
|
24551
|
-
* Queries the advanced mitigation logs of Anti-DDoS
|
|
24882
|
+
* Queries the advanced mitigation logs of an Anti-DDoS Proxy (Outside Chinese Mainland) instance.
|
|
24552
24883
|
*
|
|
24553
24884
|
* @remarks
|
|
24554
24885
|
* > This operation is suitable only for Anti-DDoS Premium.
|
|
@@ -25076,6 +25407,8 @@ export default class Client extends OpenApi {
|
|
|
25076
25407
|
*/
|
|
25077
25408
|
describeInstanceStatus(request: DescribeInstanceStatusRequest): Promise<DescribeInstanceStatusResponse>;
|
|
25078
25409
|
/**
|
|
25410
|
+
* 查询实例列表
|
|
25411
|
+
*
|
|
25079
25412
|
* @remarks
|
|
25080
25413
|
* You can call the DescribeInstances operation to query the details of Anti-DDoS Pro or Anti-DDoS Premium instances within the Alibaba Cloud account by page. The details include the ID, mitigation plan, expiration time, and forwarding status.
|
|
25081
25414
|
*
|
|
@@ -25085,6 +25418,8 @@ export default class Client extends OpenApi {
|
|
|
25085
25418
|
*/
|
|
25086
25419
|
describeInstancesWithOptions(request: DescribeInstancesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeInstancesResponse>;
|
|
25087
25420
|
/**
|
|
25421
|
+
* 查询实例列表
|
|
25422
|
+
*
|
|
25088
25423
|
* @remarks
|
|
25089
25424
|
* You can call the DescribeInstances operation to query the details of Anti-DDoS Pro or Anti-DDoS Premium instances within the Alibaba Cloud account by page. The details include the ID, mitigation plan, expiration time, and forwarding status.
|
|
25090
25425
|
*
|
|
@@ -25092,6 +25427,21 @@ export default class Client extends OpenApi {
|
|
|
25092
25427
|
* @returns DescribeInstancesResponse
|
|
25093
25428
|
*/
|
|
25094
25429
|
describeInstances(request: DescribeInstancesRequest): Promise<DescribeInstancesResponse>;
|
|
25430
|
+
/**
|
|
25431
|
+
* 展示全局模板规则
|
|
25432
|
+
*
|
|
25433
|
+
* @param request - DescribeL7GlobalRuleRequest
|
|
25434
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25435
|
+
* @returns DescribeL7GlobalRuleResponse
|
|
25436
|
+
*/
|
|
25437
|
+
describeL7GlobalRuleWithOptions(request: DescribeL7GlobalRuleRequest, runtime: $dara.RuntimeOptions): Promise<DescribeL7GlobalRuleResponse>;
|
|
25438
|
+
/**
|
|
25439
|
+
* 展示全局模板规则
|
|
25440
|
+
*
|
|
25441
|
+
* @param request - DescribeL7GlobalRuleRequest
|
|
25442
|
+
* @returns DescribeL7GlobalRuleResponse
|
|
25443
|
+
*/
|
|
25444
|
+
describeL7GlobalRule(request: DescribeL7GlobalRuleRequest): Promise<DescribeL7GlobalRuleResponse>;
|
|
25095
25445
|
/**
|
|
25096
25446
|
* Queries the back-to-origin policies for the forwarding rule of a website.
|
|
25097
25447
|
*
|
|
@@ -25138,7 +25488,7 @@ export default class Client extends OpenApi {
|
|
|
25138
25488
|
*/
|
|
25139
25489
|
describeLayer4RulePolicy(request: DescribeLayer4RulePolicyRequest): Promise<DescribeLayer4RulePolicyResponse>;
|
|
25140
25490
|
/**
|
|
25141
|
-
* Checks whether a Logstore is created for Anti-DDoS
|
|
25491
|
+
* Checks whether a Logstore is created for Anti-DDoS Proxy.
|
|
25142
25492
|
*
|
|
25143
25493
|
* @param request - DescribeLogStoreExistStatusRequest
|
|
25144
25494
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25146,7 +25496,7 @@ export default class Client extends OpenApi {
|
|
|
25146
25496
|
*/
|
|
25147
25497
|
describeLogStoreExistStatusWithOptions(request: DescribeLogStoreExistStatusRequest, runtime: $dara.RuntimeOptions): Promise<DescribeLogStoreExistStatusResponse>;
|
|
25148
25498
|
/**
|
|
25149
|
-
* Checks whether a Logstore is created for Anti-DDoS
|
|
25499
|
+
* Checks whether a Logstore is created for Anti-DDoS Proxy.
|
|
25150
25500
|
*
|
|
25151
25501
|
* @param request - DescribeLogStoreExistStatusRequest
|
|
25152
25502
|
* @returns DescribeLogStoreExistStatusResponse
|
|
@@ -25342,7 +25692,7 @@ export default class Client extends OpenApi {
|
|
|
25342
25692
|
*/
|
|
25343
25693
|
describePortFlowList(request: DescribePortFlowListRequest): Promise<DescribePortFlowListResponse>;
|
|
25344
25694
|
/**
|
|
25345
|
-
* Queries the maximum number of connections that can be established over the ports of one or more Anti-DDoS
|
|
25695
|
+
* Queries the maximum number of connections that can be established over the ports of one or more Anti-DDoS Proxy instances.
|
|
25346
25696
|
*
|
|
25347
25697
|
* @param request - DescribePortMaxConnsRequest
|
|
25348
25698
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25350,7 +25700,7 @@ export default class Client extends OpenApi {
|
|
|
25350
25700
|
*/
|
|
25351
25701
|
describePortMaxConnsWithOptions(request: DescribePortMaxConnsRequest, runtime: $dara.RuntimeOptions): Promise<DescribePortMaxConnsResponse>;
|
|
25352
25702
|
/**
|
|
25353
|
-
* Queries the maximum number of connections that can be established over the ports of one or more Anti-DDoS
|
|
25703
|
+
* Queries the maximum number of connections that can be established over the ports of one or more Anti-DDoS Proxy instances.
|
|
25354
25704
|
*
|
|
25355
25705
|
* @param request - DescribePortMaxConnsRequest
|
|
25356
25706
|
* @returns DescribePortMaxConnsResponse
|
|
@@ -25492,7 +25842,7 @@ export default class Client extends OpenApi {
|
|
|
25492
25842
|
*/
|
|
25493
25843
|
describeSlaEventList(request: DescribeSlaEventListRequest): Promise<DescribeSlaEventListResponse>;
|
|
25494
25844
|
/**
|
|
25495
|
-
* Queries whether Anti-DDoS
|
|
25845
|
+
* Queries whether Anti-DDoS Proxy is authorized to access Simple Log Service.
|
|
25496
25846
|
*
|
|
25497
25847
|
* @param request - DescribeSlsAuthStatusRequest
|
|
25498
25848
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25500,14 +25850,14 @@ export default class Client extends OpenApi {
|
|
|
25500
25850
|
*/
|
|
25501
25851
|
describeSlsAuthStatusWithOptions(request: DescribeSlsAuthStatusRequest, runtime: $dara.RuntimeOptions): Promise<DescribeSlsAuthStatusResponse>;
|
|
25502
25852
|
/**
|
|
25503
|
-
* Queries whether Anti-DDoS
|
|
25853
|
+
* Queries whether Anti-DDoS Proxy is authorized to access Simple Log Service.
|
|
25504
25854
|
*
|
|
25505
25855
|
* @param request - DescribeSlsAuthStatusRequest
|
|
25506
25856
|
* @returns DescribeSlsAuthStatusResponse
|
|
25507
25857
|
*/
|
|
25508
25858
|
describeSlsAuthStatus(request: DescribeSlsAuthStatusRequest): Promise<DescribeSlsAuthStatusResponse>;
|
|
25509
25859
|
/**
|
|
25510
|
-
* Queries
|
|
25860
|
+
* Queries information about the Logstore of the Anti-DDoS Proxy instance, such as the log storage capacity and log storage duration.
|
|
25511
25861
|
*
|
|
25512
25862
|
* @param request - DescribeSlsLogstoreInfoRequest
|
|
25513
25863
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25515,14 +25865,14 @@ export default class Client extends OpenApi {
|
|
|
25515
25865
|
*/
|
|
25516
25866
|
describeSlsLogstoreInfoWithOptions(request: DescribeSlsLogstoreInfoRequest, runtime: $dara.RuntimeOptions): Promise<DescribeSlsLogstoreInfoResponse>;
|
|
25517
25867
|
/**
|
|
25518
|
-
* Queries
|
|
25868
|
+
* Queries information about the Logstore of the Anti-DDoS Proxy instance, such as the log storage capacity and log storage duration.
|
|
25519
25869
|
*
|
|
25520
25870
|
* @param request - DescribeSlsLogstoreInfoRequest
|
|
25521
25871
|
* @returns DescribeSlsLogstoreInfoResponse
|
|
25522
25872
|
*/
|
|
25523
25873
|
describeSlsLogstoreInfo(request: DescribeSlsLogstoreInfoRequest): Promise<DescribeSlsLogstoreInfoResponse>;
|
|
25524
25874
|
/**
|
|
25525
|
-
* Checks whether Log Service is activated.
|
|
25875
|
+
* Checks whether Simple Log Service is activated.
|
|
25526
25876
|
*
|
|
25527
25877
|
* @param request - DescribeSlsOpenStatusRequest
|
|
25528
25878
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25530,7 +25880,7 @@ export default class Client extends OpenApi {
|
|
|
25530
25880
|
*/
|
|
25531
25881
|
describeSlsOpenStatusWithOptions(request: DescribeSlsOpenStatusRequest, runtime: $dara.RuntimeOptions): Promise<DescribeSlsOpenStatusResponse>;
|
|
25532
25882
|
/**
|
|
25533
|
-
* Checks whether Log Service is activated.
|
|
25883
|
+
* Checks whether Simple Log Service is activated.
|
|
25534
25884
|
*
|
|
25535
25885
|
* @param request - DescribeSlsOpenStatusRequest
|
|
25536
25886
|
* @returns DescribeSlsOpenStatusResponse
|
|
@@ -25673,7 +26023,7 @@ export default class Client extends OpenApi {
|
|
|
25673
26023
|
*/
|
|
25674
26024
|
describeUdpReflect(request: DescribeUdpReflectRequest): Promise<DescribeUdpReflectResponse>;
|
|
25675
26025
|
/**
|
|
25676
|
-
* Queries the total quota and remaining quota
|
|
26026
|
+
* Queries the total quota and remaining quota for blackhole filtering deactivation.
|
|
25677
26027
|
*
|
|
25678
26028
|
* @param request - DescribeUnBlackholeCountRequest
|
|
25679
26029
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25681,7 +26031,7 @@ export default class Client extends OpenApi {
|
|
|
25681
26031
|
*/
|
|
25682
26032
|
describeUnBlackholeCountWithOptions(request: DescribeUnBlackholeCountRequest, runtime: $dara.RuntimeOptions): Promise<DescribeUnBlackholeCountResponse>;
|
|
25683
26033
|
/**
|
|
25684
|
-
* Queries the total quota and remaining quota
|
|
26034
|
+
* Queries the total quota and remaining quota for blackhole filtering deactivation.
|
|
25685
26035
|
*
|
|
25686
26036
|
* @param request - DescribeUnBlackholeCountRequest
|
|
25687
26037
|
* @returns DescribeUnBlackholeCountResponse
|
|
@@ -25749,7 +26099,7 @@ export default class Client extends OpenApi {
|
|
|
25749
26099
|
*/
|
|
25750
26100
|
describeWebAccessLogEmptyCount(request: DescribeWebAccessLogEmptyCountRequest): Promise<DescribeWebAccessLogEmptyCountResponse>;
|
|
25751
26101
|
/**
|
|
25752
|
-
* Queries the information about the
|
|
26102
|
+
* Queries the information about the log analysis feature for a website, such as the feature status and the Simple Log Service project and Logstore that are used.
|
|
25753
26103
|
*
|
|
25754
26104
|
* @param request - DescribeWebAccessLogStatusRequest
|
|
25755
26105
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25757,7 +26107,7 @@ export default class Client extends OpenApi {
|
|
|
25757
26107
|
*/
|
|
25758
26108
|
describeWebAccessLogStatusWithOptions(request: DescribeWebAccessLogStatusRequest, runtime: $dara.RuntimeOptions): Promise<DescribeWebAccessLogStatusResponse>;
|
|
25759
26109
|
/**
|
|
25760
|
-
* Queries the information about the
|
|
26110
|
+
* Queries the information about the log analysis feature for a website, such as the feature status and the Simple Log Service project and Logstore that are used.
|
|
25761
26111
|
*
|
|
25762
26112
|
* @param request - DescribeWebAccessLogStatusRequest
|
|
25763
26113
|
* @returns DescribeWebAccessLogStatusResponse
|
|
@@ -26357,7 +26707,7 @@ export default class Client extends OpenApi {
|
|
|
26357
26707
|
*/
|
|
26358
26708
|
modifyHttp2Enable(request: ModifyHttp2EnableRequest): Promise<ModifyHttp2EnableResponse>;
|
|
26359
26709
|
/**
|
|
26360
|
-
*
|
|
26710
|
+
* Instance adjustment, similar to BSS adjustment
|
|
26361
26711
|
*
|
|
26362
26712
|
* @param request - ModifyInstanceRequest
|
|
26363
26713
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -26365,14 +26715,14 @@ export default class Client extends OpenApi {
|
|
|
26365
26715
|
*/
|
|
26366
26716
|
modifyInstanceWithOptions(request: ModifyInstanceRequest, runtime: $dara.RuntimeOptions): Promise<ModifyInstanceResponse>;
|
|
26367
26717
|
/**
|
|
26368
|
-
*
|
|
26718
|
+
* Instance adjustment, similar to BSS adjustment
|
|
26369
26719
|
*
|
|
26370
26720
|
* @param request - ModifyInstanceRequest
|
|
26371
26721
|
* @returns ModifyInstanceResponse
|
|
26372
26722
|
*/
|
|
26373
26723
|
modifyInstance(request: ModifyInstanceRequest): Promise<ModifyInstanceResponse>;
|
|
26374
26724
|
/**
|
|
26375
|
-
* Modifies the description of an Anti-DDoS
|
|
26725
|
+
* Modifies the description of an Anti-DDoS Proxy instance.
|
|
26376
26726
|
*
|
|
26377
26727
|
* @param request - ModifyInstanceRemarkRequest
|
|
26378
26728
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -26380,7 +26730,7 @@ export default class Client extends OpenApi {
|
|
|
26380
26730
|
*/
|
|
26381
26731
|
modifyInstanceRemarkWithOptions(request: ModifyInstanceRemarkRequest, runtime: $dara.RuntimeOptions): Promise<ModifyInstanceRemarkResponse>;
|
|
26382
26732
|
/**
|
|
26383
|
-
* Modifies the description of an Anti-DDoS
|
|
26733
|
+
* Modifies the description of an Anti-DDoS Proxy instance.
|
|
26384
26734
|
*
|
|
26385
26735
|
* @param request - ModifyInstanceRemarkRequest
|
|
26386
26736
|
* @returns ModifyInstanceRemarkResponse
|
|
@@ -26738,12 +27088,24 @@ export default class Client extends OpenApi {
|
|
|
26738
27088
|
*/
|
|
26739
27089
|
modifyWebPreciseAccessSwitch(request: ModifyWebPreciseAccessSwitchRequest): Promise<ModifyWebPreciseAccessSwitchResponse>;
|
|
26740
27090
|
/**
|
|
27091
|
+
* Modifies the forwarding rule of a website.
|
|
27092
|
+
*
|
|
27093
|
+
* @remarks
|
|
27094
|
+
* ## Debugging
|
|
27095
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=ddoscoo\\&api=ModifyWebRule\\&type=RPC\\&version=2020-01-01)
|
|
27096
|
+
*
|
|
26741
27097
|
* @param request - ModifyWebRuleRequest
|
|
26742
27098
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
26743
27099
|
* @returns ModifyWebRuleResponse
|
|
26744
27100
|
*/
|
|
26745
27101
|
modifyWebRuleWithOptions(request: ModifyWebRuleRequest, runtime: $dara.RuntimeOptions): Promise<ModifyWebRuleResponse>;
|
|
26746
27102
|
/**
|
|
27103
|
+
* Modifies the forwarding rule of a website.
|
|
27104
|
+
*
|
|
27105
|
+
* @remarks
|
|
27106
|
+
* ## Debugging
|
|
27107
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=ddoscoo\\&api=ModifyWebRule\\&type=RPC\\&version=2020-01-01)
|
|
27108
|
+
*
|
|
26747
27109
|
* @param request - ModifyWebRuleRequest
|
|
26748
27110
|
* @returns ModifyWebRuleResponse
|
|
26749
27111
|
*/
|