File tree Expand file tree Collapse file tree 4 files changed +26
-1
lines changed
src/main/java/com/aliyuncs/bpstudio Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1+ 2024-08-30 Version: 2.0.6
2+ - Fix bug asyncExecute Error.
3+
142024-08-29 Version: 2.0.5
25- Fix bug asyncExecute Error.
36
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments