Skip to content

Commit 9b7bd18

Browse files
committed
Add parameters to control different role.
1 parent 5c2e0ba commit 9b7bd18

11 files changed

+80
-577
lines changed

aliyun-java-sdk-cloud-siem/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-31 Version: 1.0.7
2+
- Add parameters to control different role.
3+
14
2025-01-15 Version: 1.0.6
25
- Add parameters to control different role.
36

aliyun-java-sdk-cloud-siem/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-cloud-siem</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.6</version>
7+
<version>1.0.7</version>
88
<name>aliyun-java-sdk-cloud-siem</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -91,7 +91,7 @@ http://www.aliyun.com</description>
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-gpg-plugin</artifactId>
94-
<version>1.5</version>
94+
<version>3.1.0</version>
9595
<executions>
9696
<execution>
9797
<id>sign-artifacts</id>

aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/ListCustomizeRuleTestResultRequest.java

+53-1
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,21 @@ public class ListCustomizeRuleTestResultRequest extends RpcAcsRequest<ListCustom
2626

2727
private Long roleFor;
2828

29+
private Long startTime;
30+
31+
private String verifyType;
32+
2933
private Integer pageSize;
3034

3135
private Integer roleType;
3236

3337
private Long id;
3438

35-
private Integer currentPage;
39+
private Long endTime;
40+
41+
private Integer currentPage;
42+
43+
private String detectionRuleId;
3644
public ListCustomizeRuleTestResultRequest() {
3745
super("cloud-siem", "2022-06-16", "ListCustomizeRuleTestResult", "cloud-siem");
3846
setMethod(MethodType.POST);
@@ -49,6 +57,28 @@ public void setRoleFor(Long roleFor) {
4957
}
5058
}
5159

60+
public Long getStartTime() {
61+
return this.startTime;
62+
}
63+
64+
public void setStartTime(Long startTime) {
65+
this.startTime = startTime;
66+
if(startTime != null){
67+
putBodyParameter("StartTime", startTime.toString());
68+
}
69+
}
70+
71+
public String getVerifyType() {
72+
return this.verifyType;
73+
}
74+
75+
public void setVerifyType(String verifyType) {
76+
this.verifyType = verifyType;
77+
if(verifyType != null){
78+
putBodyParameter("VerifyType", verifyType);
79+
}
80+
}
81+
5282
public Integer getPageSize() {
5383
return this.pageSize;
5484
}
@@ -82,6 +112,17 @@ public void setId(Long id) {
82112
}
83113
}
84114

115+
public Long getEndTime() {
116+
return this.endTime;
117+
}
118+
119+
public void setEndTime(Long endTime) {
120+
this.endTime = endTime;
121+
if(endTime != null){
122+
putBodyParameter("EndTime", endTime.toString());
123+
}
124+
}
125+
85126
public Integer getCurrentPage() {
86127
return this.currentPage;
87128
}
@@ -91,6 +132,17 @@ public void setCurrentPage(Integer currentPage) {
91132
if(currentPage != null){
92133
putBodyParameter("CurrentPage", currentPage.toString());
93134
}
135+
}
136+
137+
public String getDetectionRuleId() {
138+
return this.detectionRuleId;
139+
}
140+
141+
public void setDetectionRuleId(String detectionRuleId) {
142+
this.detectionRuleId = detectionRuleId;
143+
if(detectionRuleId != null){
144+
putBodyParameter("DetectionRuleId", detectionRuleId);
145+
}
94146
}
95147

96148
@Override

aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/ListCustomizeRuleTestResultResponse.java

+20
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ public static class ResponseDataItem {
129129

130130
private String logTime;
131131

132+
private String verifyType;
133+
132134
public String getUuid() {
133135
return this.uuid;
134136
}
@@ -248,6 +250,14 @@ public String getLogTime() {
248250
public void setLogTime(String logTime) {
249251
this.logTime = logTime;
250252
}
253+
254+
public String getVerifyType() {
255+
return this.verifyType;
256+
}
257+
258+
public void setVerifyType(String verifyType) {
259+
this.verifyType = verifyType;
260+
}
251261
}
252262

253263
public static class PageInfo {
@@ -258,6 +268,8 @@ public static class PageInfo {
258268

259269
private Long totalCount;
260270

271+
private Long verifiedCount;
272+
261273
public Integer getCurrentPage() {
262274
return this.currentPage;
263275
}
@@ -281,6 +293,14 @@ public Long getTotalCount() {
281293
public void setTotalCount(Long totalCount) {
282294
this.totalCount = totalCount;
283295
}
296+
297+
public Long getVerifiedCount() {
298+
return this.verifiedCount;
299+
}
300+
301+
public void setVerifiedCount(Long verifiedCount) {
302+
this.verifiedCount = verifiedCount;
303+
}
284304
}
285305
}
286306

aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/ListUserProdLogsRequest.java

-88
This file was deleted.

0 commit comments

Comments
 (0)