diff --git a/aliyun-java-sdk-cloud-siem/ChangeLog.txt b/aliyun-java-sdk-cloud-siem/ChangeLog.txt
index f27d88e98e..81968dadca 100644
--- a/aliyun-java-sdk-cloud-siem/ChangeLog.txt
+++ b/aliyun-java-sdk-cloud-siem/ChangeLog.txt
@@ -1,3 +1,6 @@
+2025-01-15 Version: 1.0.6
+- Add parameters to control different role.
+
2024-08-07 Version: 1.0.5
- Add parameters to control different role.
diff --git a/aliyun-java-sdk-cloud-siem/pom.xml b/aliyun-java-sdk-cloud-siem/pom.xml
index 4133ad0970..155f24dbf9 100644
--- a/aliyun-java-sdk-cloud-siem/pom.xml
+++ b/aliyun-java-sdk-cloud-siem/pom.xml
@@ -4,7 +4,7 @@
com.aliyun
aliyun-java-sdk-cloud-siem
jar
- 1.0.5
+ 1.0.6
aliyun-java-sdk-cloud-siem
http://www.aliyun.com
Aliyun Open API SDK for Java
diff --git a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/AddUserRequest.java b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/AddUserRequest.java
deleted file mode 100644
index 363b79a039..0000000000
--- a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/AddUserRequest.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.aliyuncs.cloud_siem.model.v20220616;
-
-import com.aliyuncs.RpcAcsRequest;
-import com.aliyuncs.http.MethodType;
-
-/**
- * @author auto create
- * @version
- */
-public class AddUserRequest extends RpcAcsRequest {
-
-
- private Long addedUserId;
- public AddUserRequest() {
- super("cloud-siem", "2022-06-16", "AddUser", "cloud-siem");
- setMethod(MethodType.POST);
- }
-
- public Long getAddedUserId() {
- return this.addedUserId;
- }
-
- public void setAddedUserId(Long addedUserId) {
- this.addedUserId = addedUserId;
- if(addedUserId != null){
- putBodyParameter("AddedUserId", addedUserId.toString());
- }
- }
-
- @Override
- public Class getResponseClass() {
- return AddUserResponse.class;
- }
-
-}
diff --git a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/AddUserResponse.java b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/AddUserResponse.java
deleted file mode 100644
index df4b908445..0000000000
--- a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/AddUserResponse.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.aliyuncs.cloud_siem.model.v20220616;
-
-import com.aliyuncs.AcsResponse;
-import com.aliyuncs.cloud_siem.transform.v20220616.AddUserResponseUnmarshaller;
-import com.aliyuncs.transform.UnmarshallerContext;
-
-/**
- * @author auto create
- * @version
- */
-public class AddUserResponse extends AcsResponse {
-
- private Boolean data;
-
- private String requestId;
-
- public Boolean getData() {
- return this.data;
- }
-
- public void setData(Boolean data) {
- this.data = data;
- }
-
- public String getRequestId() {
- return this.requestId;
- }
-
- public void setRequestId(String requestId) {
- this.requestId = requestId;
- }
-
- @Override
- public AddUserResponse getInstance(UnmarshallerContext context) {
- return AddUserResponseUnmarshaller.unmarshall(this, context);
- }
-
- @Override
- public boolean checkShowJsonItemName() {
- return false;
- }
-}
diff --git a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/BatchJobSubmitRequest.java b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/BatchJobSubmitRequest.java
deleted file mode 100644
index 32e4306fb6..0000000000
--- a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/BatchJobSubmitRequest.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.aliyuncs.cloud_siem.model.v20220616;
-
-import com.aliyuncs.RpcAcsRequest;
-import com.aliyuncs.http.MethodType;
-
-/**
- * @author auto create
- * @version
- */
-public class BatchJobSubmitRequest extends RpcAcsRequest {
-
-
- private String jsonConfig;
- public BatchJobSubmitRequest() {
- super("cloud-siem", "2022-06-16", "BatchJobSubmit", "cloud-siem");
- setMethod(MethodType.POST);
- }
-
- public String getJsonConfig() {
- return this.jsonConfig;
- }
-
- public void setJsonConfig(String jsonConfig) {
- this.jsonConfig = jsonConfig;
- if(jsonConfig != null){
- putBodyParameter("JsonConfig", jsonConfig);
- }
- }
-
- @Override
- public Class getResponseClass() {
- return BatchJobSubmitResponse.class;
- }
-
-}
diff --git a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/BatchJobSubmitResponse.java b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/BatchJobSubmitResponse.java
deleted file mode 100644
index c00c18eb98..0000000000
--- a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/BatchJobSubmitResponse.java
+++ /dev/null
@@ -1,249 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.aliyuncs.cloud_siem.model.v20220616;
-
-import java.util.List;
-import com.aliyuncs.AcsResponse;
-import com.aliyuncs.cloud_siem.transform.v20220616.BatchJobSubmitResponseUnmarshaller;
-import com.aliyuncs.transform.UnmarshallerContext;
-
-/**
- * @author auto create
- * @version
- */
-public class BatchJobSubmitResponse extends AcsResponse {
-
- private Boolean success;
-
- private Integer code;
-
- private String message;
-
- private String errCode;
-
- private String requestId;
-
- private Data data;
-
- public Boolean getSuccess() {
- return this.success;
- }
-
- public void setSuccess(Boolean success) {
- this.success = success;
- }
-
- public Integer getCode() {
- return this.code;
- }
-
- public void setCode(Integer code) {
- this.code = code;
- }
-
- public String getMessage() {
- return this.message;
- }
-
- public void setMessage(String message) {
- this.message = message;
- }
-
- public String getErrCode() {
- return this.errCode;
- }
-
- public void setErrCode(String errCode) {
- this.errCode = errCode;
- }
-
- public String getRequestId() {
- return this.requestId;
- }
-
- public void setRequestId(String requestId) {
- this.requestId = requestId;
- }
-
- public Data getData() {
- return this.data;
- }
-
- public void setData(Data data) {
- this.data = data;
- }
-
- public static class Data {
-
- private String submitId;
-
- private Integer taskCount;
-
- private String configId;
-
- private List configList;
-
- public String getSubmitId() {
- return this.submitId;
- }
-
- public void setSubmitId(String submitId) {
- this.submitId = submitId;
- }
-
- public Integer getTaskCount() {
- return this.taskCount;
- }
-
- public void setTaskCount(Integer taskCount) {
- this.taskCount = taskCount;
- }
-
- public String getConfigId() {
- return this.configId;
- }
-
- public void setConfigId(String configId) {
- this.configId = configId;
- }
-
- public List getConfigList() {
- return this.configList;
- }
-
- public void setConfigList(List configList) {
- this.configList = configList;
- }
-
- public static class ConfigListItem {
-
- private Long userId;
-
- private List productList;
-
- public Long getUserId() {
- return this.userId;
- }
-
- public void setUserId(Long userId) {
- this.userId = userId;
- }
-
- public List getProductList() {
- return this.productList;
- }
-
- public void setProductList(List productList) {
- this.productList = productList;
- }
-
- public static class ProductListItem {
-
- private String productCode;
-
- private List logList;
-
- public String getProductCode() {
- return this.productCode;
- }
-
- public void setProductCode(String productCode) {
- this.productCode = productCode;
- }
-
- public List getLogList() {
- return this.logList;
- }
-
- public void setLogList(List logList) {
- this.logList = logList;
- }
-
- public static class LogListItem {
-
- private String productCode;
-
- private String logCode;
-
- private String regionCode;
-
- private String projectNamePattern;
-
- private String logStoreNamePattern;
-
- private String errorCode;
-
- public String getProductCode() {
- return this.productCode;
- }
-
- public void setProductCode(String productCode) {
- this.productCode = productCode;
- }
-
- public String getLogCode() {
- return this.logCode;
- }
-
- public void setLogCode(String logCode) {
- this.logCode = logCode;
- }
-
- public String getRegionCode() {
- return this.regionCode;
- }
-
- public void setRegionCode(String regionCode) {
- this.regionCode = regionCode;
- }
-
- public String getProjectNamePattern() {
- return this.projectNamePattern;
- }
-
- public void setProjectNamePattern(String projectNamePattern) {
- this.projectNamePattern = projectNamePattern;
- }
-
- public String getLogStoreNamePattern() {
- return this.logStoreNamePattern;
- }
-
- public void setLogStoreNamePattern(String logStoreNamePattern) {
- this.logStoreNamePattern = logStoreNamePattern;
- }
-
- public String getErrorCode() {
- return this.errorCode;
- }
-
- public void setErrorCode(String errorCode) {
- this.errorCode = errorCode;
- }
- }
- }
- }
- }
-
- @Override
- public BatchJobSubmitResponse getInstance(UnmarshallerContext context) {
- return BatchJobSubmitResponseUnmarshaller.unmarshall(this, context);
- }
-
- @Override
- public boolean checkShowJsonItemName() {
- return false;
- }
-}
diff --git a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DeleteUserRequest.java b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DeleteUserRequest.java
deleted file mode 100644
index d324637d0a..0000000000
--- a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DeleteUserRequest.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.aliyuncs.cloud_siem.model.v20220616;
-
-import com.aliyuncs.RpcAcsRequest;
-import com.aliyuncs.http.MethodType;
-
-/**
- * @author auto create
- * @version
- */
-public class DeleteUserRequest extends RpcAcsRequest {
-
-
- private Long addedUserId;
- public DeleteUserRequest() {
- super("cloud-siem", "2022-06-16", "DeleteUser", "cloud-siem");
- setMethod(MethodType.POST);
- }
-
- public Long getAddedUserId() {
- return this.addedUserId;
- }
-
- public void setAddedUserId(Long addedUserId) {
- this.addedUserId = addedUserId;
- if(addedUserId != null){
- putBodyParameter("AddedUserId", addedUserId.toString());
- }
- }
-
- @Override
- public Class getResponseClass() {
- return DeleteUserResponse.class;
- }
-
-}
diff --git a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DeleteUserResponse.java b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DeleteUserResponse.java
deleted file mode 100644
index 7bb68646c9..0000000000
--- a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DeleteUserResponse.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.aliyuncs.cloud_siem.model.v20220616;
-
-import com.aliyuncs.AcsResponse;
-import com.aliyuncs.cloud_siem.transform.v20220616.DeleteUserResponseUnmarshaller;
-import com.aliyuncs.transform.UnmarshallerContext;
-
-/**
- * @author auto create
- * @version
- */
-public class DeleteUserResponse extends AcsResponse {
-
- private Boolean data;
-
- private String requestId;
-
- public Boolean getData() {
- return this.data;
- }
-
- public void setData(Boolean data) {
- this.data = data;
- }
-
- public String getRequestId() {
- return this.requestId;
- }
-
- public void setRequestId(String requestId) {
- this.requestId = requestId;
- }
-
- @Override
- public DeleteUserResponse getInstance(UnmarshallerContext context) {
- return DeleteUserResponseUnmarshaller.unmarshall(this, context);
- }
-
- @Override
- public boolean checkShowJsonItemName() {
- return false;
- }
-}
diff --git a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DescribeAlertsCountRequest.java b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DescribeAlertsCountRequest.java
index a89b91a70c..2a849c2155 100644
--- a/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DescribeAlertsCountRequest.java
+++ b/aliyun-java-sdk-cloud-siem/src/main/java/com/aliyuncs/cloud_siem/model/v20220616/DescribeAlertsCountRequest.java
@@ -30,6 +30,8 @@ public class DescribeAlertsCountRequest extends RpcAcsRequest countMap;
+
public Long getHigh() {
return this.high;
}
@@ -125,6 +128,14 @@ public Integer getProductNum() {
public void setProductNum(Integer productNum) {
this.productNum = productNum;
}
+
+ public Map