Skip to content

Commit 473d680

Browse files
committed
DescribeSoarRecords remove the following fields,TriggerDataId Success DataSourceName ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
1 parent 32bba3a commit 473d680

File tree

167 files changed

+14406
-0
lines changed

Some content is hidden

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

167 files changed

+14406
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2025-11-03 Version: 1.0.0
2+
- DescribeSoarRecords remove the following fields,TriggerDataId Success DataSourceName ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
3+
- DescribeSoarTaskAndActions remove the following fields,TriggerDataId Sao Success All DataSourceName ResultLevel ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
4+

aliyun-java-sdk-sophonsoar/pom.xml

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.aliyun</groupId>
5+
<artifactId>aliyun-java-sdk-sophonsoar</artifactId>
6+
<packaging>jar</packaging>
7+
<version>1.0.0</version>
8+
<name>aliyun-java-sdk-sophonsoar</name>
9+
<url>http://www.aliyun.com</url>
10+
<description>Aliyun Open API SDK for Java
11+
Copyright (C) Alibaba Cloud Computing
12+
All rights reserved.
13+
版权所有 (C)阿里云计算有限公司
14+
http://www.aliyun.com</description>
15+
<distributionManagement>
16+
<snapshotRepository>
17+
<id>sonatype-nexus-snapshots</id>
18+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
19+
</snapshotRepository>
20+
<repository>
21+
<id>sonatype-nexus-staging</id>
22+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
23+
</repository>
24+
</distributionManagement>
25+
<dependencies>
26+
<dependency>
27+
<groupId>com.aliyun</groupId>
28+
<artifactId>aliyun-java-sdk-core</artifactId>
29+
<optional>true</optional>
30+
<version>[4.4.9,5.0.0)</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.code.gson</groupId>
34+
<artifactId>gson</artifactId>
35+
<version>2.8.9</version>
36+
</dependency>
37+
</dependencies>
38+
<licenses>
39+
<license>
40+
<name>The Apache License, Version 2.0</name>
41+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
42+
</license>
43+
</licenses>
44+
<scm>
45+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
46+
<developerConnection>scm:git:[email protected]:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
47+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
48+
</scm>
49+
<developers>
50+
<developer>
51+
<id>aliyunproducts</id>
52+
<name>Aliyun SDK</name>
53+
<email>[email protected]</email>
54+
</developer>
55+
</developers>
56+
<build>
57+
<plugins>
58+
<plugin>
59+
<artifactId>maven-compiler-plugin</artifactId>
60+
<version>2.3.2</version>
61+
<configuration>
62+
<source>1.6</source>
63+
<target>1.6</target>
64+
<encoding>UTF-8</encoding>
65+
</configuration>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-jar-plugin</artifactId>
70+
<version>2.3.2</version>
71+
<configuration>
72+
<excludes/>
73+
</configuration>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-surefire-plugin</artifactId>
78+
<version>2.10</version>
79+
<configuration>
80+
<argLine>-Dfile.encoding=UTF-8</argLine>
81+
</configuration>
82+
</plugin>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-javadoc-plugin</artifactId>
86+
<version>3.1.0</version>
87+
<configuration>
88+
<encoding>UTF-8</encoding>
89+
<doclint>none</doclint>
90+
</configuration>
91+
</plugin>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-gpg-plugin</artifactId>
95+
<version>3.1.0</version>
96+
<executions>
97+
<execution>
98+
<id>sign-artifacts</id>
99+
<phase>verify</phase>
100+
<goals>
101+
<goal>sign</goal>
102+
</goals>
103+
</execution>
104+
</executions>
105+
</plugin>
106+
<plugin>
107+
<groupId>org.sonatype.central</groupId>
108+
<artifactId>central-publishing-maven-plugin</artifactId>
109+
<version>0.8.0</version>
110+
<extensions>true</extensions>
111+
<configuration>
112+
<publishingServerId>central</publishingServerId>
113+
<autoPublish>true</autoPublish>
114+
<waitUntil>published</waitUntil>
115+
</configuration>
116+
</plugin>
117+
</plugins>
118+
</build>
119+
</project>
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.sophonsoar.model.v20220728;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ComparePlaybooksRequest extends RpcAcsRequest<ComparePlaybooksResponse> {
26+
27+
28+
private Integer oldPlaybookReleaseId;
29+
30+
private Integer newPlaybookReleaseId;
31+
32+
private String playbookUuid;
33+
34+
private String lang;
35+
public ComparePlaybooksRequest() {
36+
super("sophonsoar", "2022-07-28", "ComparePlaybooks");
37+
setProtocol(ProtocolType.HTTPS);
38+
setMethod(MethodType.POST);
39+
}
40+
41+
public Integer getOldPlaybookReleaseId() {
42+
return this.oldPlaybookReleaseId;
43+
}
44+
45+
public void setOldPlaybookReleaseId(Integer oldPlaybookReleaseId) {
46+
this.oldPlaybookReleaseId = oldPlaybookReleaseId;
47+
if(oldPlaybookReleaseId != null){
48+
putQueryParameter("OldPlaybookReleaseId", oldPlaybookReleaseId.toString());
49+
}
50+
}
51+
52+
public Integer getNewPlaybookReleaseId() {
53+
return this.newPlaybookReleaseId;
54+
}
55+
56+
public void setNewPlaybookReleaseId(Integer newPlaybookReleaseId) {
57+
this.newPlaybookReleaseId = newPlaybookReleaseId;
58+
if(newPlaybookReleaseId != null){
59+
putQueryParameter("NewPlaybookReleaseId", newPlaybookReleaseId.toString());
60+
}
61+
}
62+
63+
public String getPlaybookUuid() {
64+
return this.playbookUuid;
65+
}
66+
67+
public void setPlaybookUuid(String playbookUuid) {
68+
this.playbookUuid = playbookUuid;
69+
if(playbookUuid != null){
70+
putQueryParameter("PlaybookUuid", playbookUuid);
71+
}
72+
}
73+
74+
public String getLang() {
75+
return this.lang;
76+
}
77+
78+
public void setLang(String lang) {
79+
this.lang = lang;
80+
if(lang != null){
81+
putQueryParameter("Lang", lang);
82+
}
83+
}
84+
85+
@Override
86+
public Class<ComparePlaybooksResponse> getResponseClass() {
87+
return ComparePlaybooksResponse.class;
88+
}
89+
90+
}
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.sophonsoar.model.v20220728;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.sophonsoar.transform.v20220728.ComparePlaybooksResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ComparePlaybooksResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private CompareResult compareResult;
30+
31+
public String getRequestId() {
32+
return this.requestId;
33+
}
34+
35+
public void setRequestId(String requestId) {
36+
this.requestId = requestId;
37+
}
38+
39+
public CompareResult getCompareResult() {
40+
return this.compareResult;
41+
}
42+
43+
public void setCompareResult(CompareResult compareResult) {
44+
this.compareResult = compareResult;
45+
}
46+
47+
public static class CompareResult {
48+
49+
private Boolean same;
50+
51+
private Boolean _new;
52+
53+
private String description;
54+
55+
public Boolean getSame() {
56+
return this.same;
57+
}
58+
59+
public void setSame(Boolean same) {
60+
this.same = same;
61+
}
62+
63+
public Boolean get_New() {
64+
return this._new;
65+
}
66+
67+
public void set_New(Boolean _new) {
68+
this._new = _new;
69+
}
70+
71+
public String getDescription() {
72+
return this.description;
73+
}
74+
75+
public void setDescription(String description) {
76+
this.description = description;
77+
}
78+
}
79+
80+
@Override
81+
public ComparePlaybooksResponse getInstance(UnmarshallerContext context) {
82+
return ComparePlaybooksResponseUnmarshaller.unmarshall(this, context);
83+
}
84+
85+
@Override
86+
public boolean checkShowJsonItemName() {
87+
return false;
88+
}
89+
}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.sophonsoar.model.v20220728;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ConvertPlaybookRequest extends RpcAcsRequest<ConvertPlaybookResponse> {
26+
27+
28+
private Long roleFor;
29+
30+
private String taskflow;
31+
32+
private String roleType;
33+
34+
private String lang;
35+
public ConvertPlaybookRequest() {
36+
super("sophonsoar", "2022-07-28", "ConvertPlaybook");
37+
setProtocol(ProtocolType.HTTPS);
38+
setMethod(MethodType.POST);
39+
}
40+
41+
public Long getRoleFor() {
42+
return this.roleFor;
43+
}
44+
45+
public void setRoleFor(Long roleFor) {
46+
this.roleFor = roleFor;
47+
if(roleFor != null){
48+
putQueryParameter("RoleFor", roleFor.toString());
49+
}
50+
}
51+
52+
public String getTaskflow() {
53+
return this.taskflow;
54+
}
55+
56+
public void setTaskflow(String taskflow) {
57+
this.taskflow = taskflow;
58+
if(taskflow != null){
59+
putBodyParameter("Taskflow", taskflow);
60+
}
61+
}
62+
63+
public String getRoleType() {
64+
return this.roleType;
65+
}
66+
67+
public void setRoleType(String roleType) {
68+
this.roleType = roleType;
69+
if(roleType != null){
70+
putQueryParameter("RoleType", roleType);
71+
}
72+
}
73+
74+
public String getLang() {
75+
return this.lang;
76+
}
77+
78+
public void setLang(String lang) {
79+
this.lang = lang;
80+
if(lang != null){
81+
putQueryParameter("Lang", lang);
82+
}
83+
}
84+
85+
@Override
86+
public Class<ConvertPlaybookResponse> getResponseClass() {
87+
return ConvertPlaybookResponse.class;
88+
}
89+
90+
}

0 commit comments

Comments
 (0)