Skip to content

Commit f388028

Browse files
committed
Generated java-async 2024-07-27 for SasRasp.
1 parent 98b8d67 commit f388028

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
lines changed

sasrasp-20240727/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-25 Version: 1.0.1
2+
- Generated java-async 2024-07-27 for SasRasp.
3+
14
2025-07-18 Version: 1.0.0
25
- Generated java-async 2024-07-27 for SasRasp.
36

sasrasp-20240727/pom.xml

Lines changed: 2 additions & 3 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>alibabacloud-sasrasp20240727</artifactId>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-sasrasp20240727</name>
99
<description>Alibaba Cloud SasRasp (20240727) Async SDK for Java
@@ -104,12 +104,11 @@
104104
<plugin>
105105
<groupId>org.sonatype.central</groupId>
106106
<artifactId>central-publishing-maven-plugin</artifactId>
107-
<version>0.8.0</version>
107+
<version>0.9.0</version>
108108
<extensions>true</extensions>
109109
<configuration>
110110
<publishingServerId>central</publishingServerId>
111111
<autoPublish>true</autoPublish>
112-
<waitUntil>published</waitUntil>
113112
</configuration>
114113
</plugin>
115114
</plugins>

sasrasp-20240727/src/main/java/com/aliyun/sdk/service/sasrasp20240727/models/DescribeAttacksResponseBody.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@ public static class Attacks extends TeaModel {
242242
@com.aliyun.core.annotation.NameInMap("Data")
243243
private String data;
244244

245+
@com.aliyun.core.annotation.NameInMap("HandleStatus")
246+
private Integer handleStatus;
247+
248+
@com.aliyun.core.annotation.NameInMap("HandleTimestamp")
249+
private Long handleTimestamp;
250+
245251
@com.aliyun.core.annotation.NameInMap("Headers")
246252
private String headers;
247253

@@ -352,6 +358,8 @@ private Attacks(Builder builder) {
352358
this.contentLength = builder.contentLength;
353359
this.count = builder.count;
354360
this.data = builder.data;
361+
this.handleStatus = builder.handleStatus;
362+
this.handleTimestamp = builder.handleTimestamp;
355363
this.headers = builder.headers;
356364
this.hostId = builder.hostId;
357365
this.hostname = builder.hostname;
@@ -465,6 +473,20 @@ public String getData() {
465473
return this.data;
466474
}
467475

476+
/**
477+
* @return handleStatus
478+
*/
479+
public Integer getHandleStatus() {
480+
return this.handleStatus;
481+
}
482+
483+
/**
484+
* @return handleTimestamp
485+
*/
486+
public Long getHandleTimestamp() {
487+
return this.handleTimestamp;
488+
}
489+
468490
/**
469491
* @return headers
470492
*/
@@ -707,6 +729,8 @@ public static final class Builder {
707729
private Long contentLength;
708730
private Long count;
709731
private String data;
732+
private Integer handleStatus;
733+
private Long handleTimestamp;
710734
private String headers;
711735
private String hostId;
712736
private String hostname;
@@ -755,6 +779,8 @@ private Builder(Attacks model) {
755779
this.contentLength = model.contentLength;
756780
this.count = model.count;
757781
this.data = model.data;
782+
this.handleStatus = model.handleStatus;
783+
this.handleTimestamp = model.handleTimestamp;
758784
this.headers = model.headers;
759785
this.hostId = model.hostId;
760786
this.hostname = model.hostname;
@@ -870,6 +896,22 @@ public Builder data(String data) {
870896
return this;
871897
}
872898

899+
/**
900+
* HandleStatus.
901+
*/
902+
public Builder handleStatus(Integer handleStatus) {
903+
this.handleStatus = handleStatus;
904+
return this;
905+
}
906+
907+
/**
908+
* HandleTimestamp.
909+
*/
910+
public Builder handleTimestamp(Long handleTimestamp) {
911+
this.handleTimestamp = handleTimestamp;
912+
return this;
913+
}
914+
873915
/**
874916
* Headers.
875917
*/

0 commit comments

Comments
 (0)