Skip to content

Commit aa71108

Browse files
committed
Fix bug asyncExecute Error.
1 parent c694eb7 commit aa71108

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
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-08-30 Version: 2.0.6
2+
- Fix bug asyncExecute Error.
3+
14
2024-08-29 Version: 2.0.5
25
- Fix bug asyncExecute Error.
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.5</version>
7+
<version>2.0.6</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/GetApplicationResponse.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ public static class Data {
8585

8686
private String error;
8787

88+
private Double deployPercent;
89+
8890
private List<Item> priceList;
8991

9092
private List<Item1> checklist;
@@ -163,6 +165,14 @@ public void setError(String error) {
163165
this.error = error;
164166
}
165167

168+
public Double getDeployPercent() {
169+
return this.deployPercent;
170+
}
171+
172+
public void setDeployPercent(Double deployPercent) {
173+
this.deployPercent = deployPercent;
174+
}
175+
166176
public List<Item> getPriceList() {
167177
return this.priceList;
168178
}
@@ -421,6 +431,8 @@ public static class Item2 {
421431

422432
private String lifecycle;
423433

434+
private String nodeLabel;
435+
424436
public String getStatus() {
425437
return this.status;
426438
}
@@ -484,6 +496,14 @@ public String getLifecycle() {
484496
public void setLifecycle(String lifecycle) {
485497
this.lifecycle = lifecycle;
486498
}
499+
500+
public String getNodeLabel() {
501+
return this.nodeLabel;
502+
}
503+
504+
public void setNodeLabel(String nodeLabel) {
505+
this.nodeLabel = nodeLabel;
506+
}
487507
}
488508
}
489509

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public static GetApplicationResponse unmarshall(GetApplicationResponse getApplic
4343
data.setResourceGroupId(_ctx.stringValue("GetApplicationResponse.Data.ResourceGroupId"));
4444
data.setStatus(_ctx.stringValue("GetApplicationResponse.Data.Status"));
4545
data.setError(_ctx.stringValue("GetApplicationResponse.Data.Error"));
46+
data.setDeployPercent(_ctx.doubleValue("GetApplicationResponse.Data.DeployPercent"));
4647

4748
List<Item> priceList = new ArrayList<Item>();
4849
for (int i = 0; i < _ctx.lengthValue("GetApplicationResponse.Data.PriceList.Length"); i++) {
@@ -92,6 +93,7 @@ public static GetApplicationResponse unmarshall(GetApplicationResponse getApplic
9293
item2.setResourceType(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].ResourceType"));
9394
item2.setRemark(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].Remark"));
9495
item2.setLifecycle(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].Lifecycle"));
96+
item2.setNodeLabel(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].NodeLabel"));
9597

9698
resourceList.add(item2);
9799
}

0 commit comments

Comments
 (0)