Skip to content

Commit 41be446

Browse files
committed
Generated 2021-09-31 for BPStudio.
1 parent fd1254b commit 41be446

File tree

4 files changed

+66
-13
lines changed

4 files changed

+66
-13
lines changed

aliyun-java-sdk-bpstudio/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-09-27 Version: 2.0.10
2+
- Generated 2021-09-31 for `BPStudio`.
3+
14
2024-09-24 Version: 2.0.9
25
- Generated 2021-09-31 for `BPStudio`.
36

aliyun-java-sdk-bpstudio/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-bpstudio</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.0.9</version>
7+
<version>2.0.10</version>
88
<name>aliyun-java-sdk-bpstudio</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationSyncResponse.java

Lines changed: 52 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ public class ExecuteOperationSyncResponse extends AcsResponse {
2828

2929
private String requestId;
3030

31-
private String data;
32-
3331
private Integer code;
3432

33+
private Data data;
34+
3535
public String getMessage() {
3636
return this.message;
3737
}
@@ -48,20 +48,63 @@ public void setRequestId(String requestId) {
4848
this.requestId = requestId;
4949
}
5050

51-
public String getData() {
51+
public Integer getCode() {
52+
return this.code;
53+
}
54+
55+
public void setCode(Integer code) {
56+
this.code = code;
57+
}
58+
59+
public Data getData() {
5260
return this.data;
5361
}
5462

55-
public void setData(String data) {
63+
public void setData(Data data) {
5664
this.data = data;
5765
}
5866

59-
public Integer getCode() {
60-
return this.code;
61-
}
67+
public static class Data {
6268

63-
public void setCode(Integer code) {
64-
this.code = code;
69+
private String operationId;
70+
71+
private String status;
72+
73+
private String message;
74+
75+
private String arguments;
76+
77+
public String getOperationId() {
78+
return this.operationId;
79+
}
80+
81+
public void setOperationId(String operationId) {
82+
this.operationId = operationId;
83+
}
84+
85+
public String getStatus() {
86+
return this.status;
87+
}
88+
89+
public void setStatus(String status) {
90+
this.status = status;
91+
}
92+
93+
public String getMessage() {
94+
return this.message;
95+
}
96+
97+
public void setMessage(String message) {
98+
this.message = message;
99+
}
100+
101+
public String getArguments() {
102+
return this.arguments;
103+
}
104+
105+
public void setArguments(String arguments) {
106+
this.arguments = arguments;
107+
}
65108
}
66109

67110
@Override

aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/transform/v20210931/ExecuteOperationSyncResponseUnmarshaller.java

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
package com.aliyuncs.bpstudio.transform.v20210931;
1616

17-
import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse;
17+
import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse;
18+
import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse.Data;
1819
import com.aliyuncs.transform.UnmarshallerContext;
1920

2021

@@ -24,8 +25,14 @@ public static ExecuteOperationSyncResponse unmarshall(ExecuteOperationSyncRespon
2425

2526
executeOperationSyncResponse.setRequestId(_ctx.stringValue("ExecuteOperationSyncResponse.RequestId"));
2627
executeOperationSyncResponse.setMessage(_ctx.stringValue("ExecuteOperationSyncResponse.Message"));
27-
executeOperationSyncResponse.setData(_ctx.stringValue("ExecuteOperationSyncResponse.Data"));
28-
executeOperationSyncResponse.setCode(_ctx.integerValue("ExecuteOperationSyncResponse.Code"));
28+
executeOperationSyncResponse.setCode(_ctx.integerValue("ExecuteOperationSyncResponse.Code"));
29+
30+
Data data = new Data();
31+
data.setOperationId(_ctx.stringValue("ExecuteOperationSyncResponse.Data.OperationId"));
32+
data.setStatus(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Status"));
33+
data.setMessage(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Message"));
34+
data.setArguments(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Arguments"));
35+
executeOperationSyncResponse.setData(data);
2936

3037
return executeOperationSyncResponse;
3138
}

0 commit comments

Comments
 (0)