diff --git a/aliyun-java-sdk-bpstudio/ChangeLog.txt b/aliyun-java-sdk-bpstudio/ChangeLog.txt index efe7f4c532..a5c3e72de7 100644 --- a/aliyun-java-sdk-bpstudio/ChangeLog.txt +++ b/aliyun-java-sdk-bpstudio/ChangeLog.txt @@ -1,3 +1,6 @@ +2024-09-27 Version: 2.0.10 +- Generated 2021-09-31 for `BPStudio`. + 2024-09-24 Version: 2.0.9 - Generated 2021-09-31 for `BPStudio`. diff --git a/aliyun-java-sdk-bpstudio/pom.xml b/aliyun-java-sdk-bpstudio/pom.xml index d828b3ed71..aabc02dadb 100644 --- a/aliyun-java-sdk-bpstudio/pom.xml +++ b/aliyun-java-sdk-bpstudio/pom.xml @@ -4,7 +4,7 @@ com.aliyun aliyun-java-sdk-bpstudio jar - 2.0.9 + 2.0.10 aliyun-java-sdk-bpstudio http://www.aliyun.com Aliyun Open API SDK for Java diff --git a/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationSyncResponse.java b/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationSyncResponse.java index d94c257bad..2c6c31c751 100644 --- a/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationSyncResponse.java +++ b/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationSyncResponse.java @@ -28,10 +28,10 @@ public class ExecuteOperationSyncResponse extends AcsResponse { private String requestId; - private String data; - private Integer code; + private Data data; + public String getMessage() { return this.message; } @@ -48,20 +48,63 @@ public void setRequestId(String requestId) { this.requestId = requestId; } - public String getData() { + public Integer getCode() { + return this.code; + } + + public void setCode(Integer code) { + this.code = code; + } + + public Data getData() { return this.data; } - public void setData(String data) { + public void setData(Data data) { this.data = data; } - public Integer getCode() { - return this.code; - } + public static class Data { - public void setCode(Integer code) { - this.code = code; + private String operationId; + + private String status; + + private String message; + + private String arguments; + + public String getOperationId() { + return this.operationId; + } + + public void setOperationId(String operationId) { + this.operationId = operationId; + } + + public String getStatus() { + return this.status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public String getArguments() { + return this.arguments; + } + + public void setArguments(String arguments) { + this.arguments = arguments; + } } @Override diff --git a/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/transform/v20210931/ExecuteOperationSyncResponseUnmarshaller.java b/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/transform/v20210931/ExecuteOperationSyncResponseUnmarshaller.java index afe47d97c9..1884660460 100644 --- a/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/transform/v20210931/ExecuteOperationSyncResponseUnmarshaller.java +++ b/aliyun-java-sdk-bpstudio/src/main/java/com/aliyuncs/bpstudio/transform/v20210931/ExecuteOperationSyncResponseUnmarshaller.java @@ -14,7 +14,8 @@ package com.aliyuncs.bpstudio.transform.v20210931; -import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse; +import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse; +import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; @@ -24,8 +25,14 @@ public static ExecuteOperationSyncResponse unmarshall(ExecuteOperationSyncRespon executeOperationSyncResponse.setRequestId(_ctx.stringValue("ExecuteOperationSyncResponse.RequestId")); executeOperationSyncResponse.setMessage(_ctx.stringValue("ExecuteOperationSyncResponse.Message")); - executeOperationSyncResponse.setData(_ctx.stringValue("ExecuteOperationSyncResponse.Data")); - executeOperationSyncResponse.setCode(_ctx.integerValue("ExecuteOperationSyncResponse.Code")); + executeOperationSyncResponse.setCode(_ctx.integerValue("ExecuteOperationSyncResponse.Code")); + + Data data = new Data(); + data.setOperationId(_ctx.stringValue("ExecuteOperationSyncResponse.Data.OperationId")); + data.setStatus(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Status")); + data.setMessage(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Message")); + data.setArguments(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Arguments")); + executeOperationSyncResponse.setData(data); return executeOperationSyncResponse; }