Skip to content

Commit 0616519

Browse files
committed
Delete API DescribeDomainAttackEvents.
1 parent 22bd8ea commit 0616519

File tree

213 files changed

+3717
-894
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+3717
-894
lines changed

ddoscoo-20171228/ChangeLog.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2025-03-12 Version: 3.0.0
2+
- Delete API DescribeDomainAttackEvents.
3+
- Delete API DescribeDomainQps.
4+
- Update API ConfigLayer4Rule: add param ProxyEnable.
5+
- Update API ConfigLayer7BlackWhiteList: update param BlackList.
6+
- Update API ConfigLayer7BlackWhiteList: update param WhiteList.
7+
- Update API ConfigLayer7Cert: add param CertIdentifier.
8+
- Update API ConfigLayer7Cert: add param CertRegion.
9+
- Update API CreateLayer4Rule: add param ProxyEnable.
10+
- Update API DescribeDomainStatusCodeList: update response param.
11+
- Update API DescribeDomains: update response param.
12+
- Update API DescribeLayer4Rules: update response param.
13+
- Update API DescribleCertList: update response param.
14+
- Update API ListValueAdded: update response param.
15+
16+
117
2023-04-25 Version: 2.0.3
218
- Update sdk.
319

ddoscoo-20171228/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>ddoscoo20171228</artifactId>
6-
<version>2.0.3</version>
6+
<version>3.0.0</version>
77
<packaging>jar</packaging>
88
<name>ddoscoo20171228</name>
99
<description>Alibaba Cloud ddoscoo (20171228) SDK for Java
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>com.aliyun</groupId>
4343
<artifactId>tea-util</artifactId>
44-
<version>0.2.16</version>
44+
<version>0.2.23</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.aliyun</groupId>
@@ -51,17 +51,17 @@
5151
<dependency>
5252
<groupId>com.aliyun</groupId>
5353
<artifactId>tea</artifactId>
54-
<version>1.2.5</version>
54+
<version>1.3.1</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.aliyun</groupId>
5858
<artifactId>tea-openapi</artifactId>
59-
<version>0.2.8</version>
59+
<version>0.3.6</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>com.aliyun</groupId>
6363
<artifactId>openapiutil</artifactId>
64-
<version>0.2.1</version>
64+
<version>0.2.2</version>
6565
</dependency>
6666
</dependencies>
6767
<build>
@@ -158,6 +158,7 @@
158158
<artifactSet>
159159
<excludes>
160160
<exclude>org.jacoco:*</exclude>
161+
<exclude>org.bouncycastle:bcprov-jdk18on</exclude>
161162
</excludes>
162163
</artifactSet>
163164
<filters>

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/Client.java

Lines changed: 1069 additions & 167 deletions
Large diffs are not rendered by default.

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/models/AddLayer7CCRuleRequest.java

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,82 @@
44
import com.aliyun.tea.*;
55

66
public class AddLayer7CCRuleRequest extends TeaModel {
7+
/**
8+
* <p>This parameter is required.</p>
9+
*
10+
* <strong>example:</strong>
11+
* <p>close</p>
12+
*/
713
@NameInMap("Act")
814
public String act;
915

16+
/**
17+
* <p>This parameter is required.</p>
18+
*
19+
* <strong>example:</strong>
20+
* <p>2</p>
21+
*/
1022
@NameInMap("Count")
1123
public Integer count;
1224

25+
/**
26+
* <p>This parameter is required.</p>
27+
*
28+
* <strong>example:</strong>
29+
* <p><a href="http://www.aliyun.com">www.aliyun.com</a></p>
30+
*/
1331
@NameInMap("Domain")
1432
public String domain;
1533

34+
/**
35+
* <p>This parameter is required.</p>
36+
*
37+
* <strong>example:</strong>
38+
* <p>5</p>
39+
*/
1640
@NameInMap("Interval")
1741
public Integer interval;
1842

43+
/**
44+
* <p>This parameter is required.</p>
45+
*
46+
* <strong>example:</strong>
47+
* <p>match</p>
48+
*/
1949
@NameInMap("Mode")
2050
public String mode;
2151

52+
/**
53+
* <p>This parameter is required.</p>
54+
*
55+
* <strong>example:</strong>
56+
* <p>testCcRule1</p>
57+
*/
2258
@NameInMap("Name")
2359
public String name;
2460

61+
/**
62+
* <strong>example:</strong>
63+
* <p>test</p>
64+
*/
2565
@NameInMap("ResourceGroupId")
2666
public String resourceGroupId;
2767

68+
/**
69+
* <p>This parameter is required.</p>
70+
*
71+
* <strong>example:</strong>
72+
* <p>60</p>
73+
*/
2874
@NameInMap("Ttl")
2975
public Integer ttl;
3076

77+
/**
78+
* <p>This parameter is required.</p>
79+
*
80+
* <strong>example:</strong>
81+
* <p>/a/b/c</p>
82+
*/
3183
@NameInMap("Uri")
3284
public String uri;
3385

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/models/AddLayer7CCRuleResponse.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55

66
public class AddLayer7CCRuleResponse extends TeaModel {
77
@NameInMap("headers")
8-
@Validation(required = true)
98
public java.util.Map<String, String> headers;
109

1110
@NameInMap("statusCode")
12-
@Validation(required = true)
1311
public Integer statusCode;
1412

1513
@NameInMap("body")
16-
@Validation(required = true)
1714
public AddLayer7CCRuleResponseBody body;
1815

1916
public static AddLayer7CCRuleResponse build(java.util.Map<String, ?> map) throws Exception {

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/models/AddLayer7CCRuleResponseBody.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
import com.aliyun.tea.*;
55

66
public class AddLayer7CCRuleResponseBody extends TeaModel {
7+
/**
8+
* <strong>example:</strong>
9+
* <p>CF33B4C3-196E-4015-AADD-5CAD00057B80</p>
10+
*/
711
@NameInMap("RequestId")
812
public String requestId;
913

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/models/CloseDomainSlsConfigRequest.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,33 @@
44
import com.aliyun.tea.*;
55

66
public class CloseDomainSlsConfigRequest extends TeaModel {
7+
/**
8+
* <p>This parameter is required.</p>
9+
*
10+
* <strong>example:</strong>
11+
* <p><a href="http://www.example.com">www.example.com</a></p>
12+
*/
713
@NameInMap("Domain")
814
public String domain;
915

16+
/**
17+
* <strong>example:</strong>
18+
* <p>cn</p>
19+
*/
1020
@NameInMap("Lang")
1121
public String lang;
1222

23+
/**
24+
* <strong>example:</strong>
25+
* <p>xx</p>
26+
*/
1327
@NameInMap("ResourceGroupId")
1428
public String resourceGroupId;
1529

30+
/**
31+
* <strong>example:</strong>
32+
* <p>1.1.1.1</p>
33+
*/
1634
@NameInMap("SourceIp")
1735
public String sourceIp;
1836

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/models/CloseDomainSlsConfigResponse.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55

66
public class CloseDomainSlsConfigResponse extends TeaModel {
77
@NameInMap("headers")
8-
@Validation(required = true)
98
public java.util.Map<String, String> headers;
109

1110
@NameInMap("statusCode")
12-
@Validation(required = true)
1311
public Integer statusCode;
1412

1513
@NameInMap("body")
16-
@Validation(required = true)
1714
public CloseDomainSlsConfigResponseBody body;
1815

1916
public static CloseDomainSlsConfigResponse build(java.util.Map<String, ?> map) throws Exception {

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/models/CloseDomainSlsConfigResponseBody.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
import com.aliyun.tea.*;
55

66
public class CloseDomainSlsConfigResponseBody extends TeaModel {
7+
/**
8+
* <strong>example:</strong>
9+
* <p>CF33B4C3-196E-4015-AADD-5CAD00057B80</p>
10+
*/
711
@NameInMap("RequestId")
812
public String requestId;
913

ddoscoo-20171228/src/main/java/com/aliyun/ddoscoo20171228/models/ConfigHealthCheckRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,39 @@
44
import com.aliyun.tea.*;
55

66
public class ConfigHealthCheckRequest extends TeaModel {
7+
/**
8+
* <p>This parameter is required.</p>
9+
*
10+
* <strong>example:</strong>
11+
* <p>tcp</p>
12+
*/
713
@NameInMap("ForwardProtocol")
814
public String forwardProtocol;
915

16+
/**
17+
* <p>This parameter is required.</p>
18+
*
19+
* <strong>example:</strong>
20+
* <p>233</p>
21+
*/
1022
@NameInMap("FrontendPort")
1123
public Integer frontendPort;
1224

25+
/**
26+
* <p>This parameter is required.</p>
27+
*
28+
* <strong>example:</strong>
29+
* <p>{&quot;Type&quot;:&quot;tcp&quot;,&quot;Timeout&quot;:10,&quot;Port&quot;:80,&quot;Interval&quot;:10,&quot;Up&quot;:10,&quot;Down&quot;:40}&quot;}</p>
30+
*/
1331
@NameInMap("HealthCheck")
1432
public String healthCheck;
1533

34+
/**
35+
* <p>This parameter is required.</p>
36+
*
37+
* <strong>example:</strong>
38+
* <p>ddoscoo-cn-XXXXXX</p>
39+
*/
1640
@NameInMap("InstanceId")
1741
public String instanceId;
1842

0 commit comments

Comments
 (0)