Skip to content

Commit 8731e4d

Browse files
committed
Generated 2021-09-31 for BPStudio.
1 parent 1da37d0 commit 8731e4d

File tree

3 files changed

+57
-41
lines changed

3 files changed

+57
-41
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+
2025-06-12 Version: 2.0.16
2+
- Generated 2021-09-31 for `BPStudio`.
3+
14
2025-02-28 Version: 2.0.15
25
- Generated 2021-09-31 for `BPStudio`.
36

aliyun-java-sdk-bpstudio/pom.xml

Lines changed: 2 additions & 2 deletions
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.15</version>
7+
<version>2.0.16</version>
88
<name>aliyun-java-sdk-bpstudio</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -91,7 +91,7 @@ http://www.aliyun.com</description>
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-gpg-plugin</artifactId>
94-
<version>1.5</version>
94+
<version>3.1.0</version>
9595
<executions>
9696
<execution>
9797
<id>sign-artifacts</id>

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

Lines changed: 52 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,20 @@
2424
public class ListApplicationRequest extends RpcAcsRequest<ListApplicationResponse> {
2525

2626

27-
private String resourceId;
28-
29-
private String templateId;
30-
3127
private String resourceGroupId;
3228

3329
private Integer nextToken;
3430

35-
private Integer maxResults;
36-
3731
private String keyword;
3832

33+
private String resourceId;
34+
35+
private Boolean showHide;
36+
37+
private String templateId;
38+
39+
private Integer maxResults;
40+
3941
private Long orderType;
4042

4143
private String status;
@@ -44,28 +46,6 @@ public ListApplicationRequest() {
4446
setMethod(MethodType.POST);
4547
}
4648

47-
public String getResourceId() {
48-
return this.resourceId;
49-
}
50-
51-
public void setResourceId(String resourceId) {
52-
this.resourceId = resourceId;
53-
if(resourceId != null){
54-
putBodyParameter("ResourceId", resourceId);
55-
}
56-
}
57-
58-
public String getTemplateId() {
59-
return this.templateId;
60-
}
61-
62-
public void setTemplateId(String templateId) {
63-
this.templateId = templateId;
64-
if(templateId != null){
65-
putBodyParameter("TemplateId", templateId);
66-
}
67-
}
68-
6949
public String getResourceGroupId() {
7050
return this.resourceGroupId;
7151
}
@@ -88,17 +68,6 @@ public void setNextToken(Integer nextToken) {
8868
}
8969
}
9070

91-
public Integer getMaxResults() {
92-
return this.maxResults;
93-
}
94-
95-
public void setMaxResults(Integer maxResults) {
96-
this.maxResults = maxResults;
97-
if(maxResults != null){
98-
putBodyParameter("MaxResults", maxResults.toString());
99-
}
100-
}
101-
10271
public String getKeyword() {
10372
return this.keyword;
10473
}
@@ -110,6 +79,50 @@ public void setKeyword(String keyword) {
11079
}
11180
}
11281

82+
public String getResourceId() {
83+
return this.resourceId;
84+
}
85+
86+
public void setResourceId(String resourceId) {
87+
this.resourceId = resourceId;
88+
if(resourceId != null){
89+
putBodyParameter("ResourceId", resourceId);
90+
}
91+
}
92+
93+
public Boolean getShowHide() {
94+
return this.showHide;
95+
}
96+
97+
public void setShowHide(Boolean showHide) {
98+
this.showHide = showHide;
99+
if(showHide != null){
100+
putBodyParameter("ShowHide", showHide.toString());
101+
}
102+
}
103+
104+
public String getTemplateId() {
105+
return this.templateId;
106+
}
107+
108+
public void setTemplateId(String templateId) {
109+
this.templateId = templateId;
110+
if(templateId != null){
111+
putBodyParameter("TemplateId", templateId);
112+
}
113+
}
114+
115+
public Integer getMaxResults() {
116+
return this.maxResults;
117+
}
118+
119+
public void setMaxResults(Integer maxResults) {
120+
this.maxResults = maxResults;
121+
if(maxResults != null){
122+
putBodyParameter("MaxResults", maxResults.toString());
123+
}
124+
}
125+
113126
public Long getOrderType() {
114127
return this.orderType;
115128
}

0 commit comments

Comments
 (0)