Skip to content

Commit 4275876

Browse files
committed
Generated 2021-09-31 for BPStudio.
1 parent b03d36d commit 4275876

17 files changed

+1265
-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-09-24 Version: 2.0.8
2+
- Generated 2021-09-31 for `BPStudio`.
3+
14
2024-09-03 Version: 2.0.7
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.7</version>
7+
<version>2.0.8</version>
88
<name>aliyun-java-sdk-bpstudio</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.bpstudio.model.v20210931;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class GetResource4ModifyRecordRequest extends RpcAcsRequest<GetResource4ModifyRecordResponse> {
26+
27+
28+
private Long nextToken;
29+
30+
private Long maxResults;
31+
32+
private String applicationId;
33+
public GetResource4ModifyRecordRequest() {
34+
super("BPStudio", "2021-09-31", "GetResource4ModifyRecord", "bpstudio");
35+
setProtocol(ProtocolType.HTTPS);
36+
setMethod(MethodType.POST);
37+
}
38+
39+
public Long getNextToken() {
40+
return this.nextToken;
41+
}
42+
43+
public void setNextToken(Long nextToken) {
44+
this.nextToken = nextToken;
45+
if(nextToken != null){
46+
putBodyParameter("NextToken", nextToken.toString());
47+
}
48+
}
49+
50+
public Long getMaxResults() {
51+
return this.maxResults;
52+
}
53+
54+
public void setMaxResults(Long maxResults) {
55+
this.maxResults = maxResults;
56+
if(maxResults != null){
57+
putBodyParameter("MaxResults", maxResults.toString());
58+
}
59+
}
60+
61+
public String getApplicationId() {
62+
return this.applicationId;
63+
}
64+
65+
public void setApplicationId(String applicationId) {
66+
this.applicationId = applicationId;
67+
if(applicationId != null){
68+
putBodyParameter("ApplicationId", applicationId);
69+
}
70+
}
71+
72+
@Override
73+
public Class<GetResource4ModifyRecordResponse> getResponseClass() {
74+
return GetResource4ModifyRecordResponse.class;
75+
}
76+
77+
}
Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.bpstudio.model.v20210931;
16+
17+
import java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.bpstudio.transform.v20210931.GetResource4ModifyRecordResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class GetResource4ModifyRecordResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private String message;
31+
32+
private String code;
33+
34+
private String totalCount;
35+
36+
private String nextToken;
37+
38+
private String accessDeniedDetail;
39+
40+
private List<Item> data;
41+
42+
public String getRequestId() {
43+
return this.requestId;
44+
}
45+
46+
public void setRequestId(String requestId) {
47+
this.requestId = requestId;
48+
}
49+
50+
public String getMessage() {
51+
return this.message;
52+
}
53+
54+
public void setMessage(String message) {
55+
this.message = message;
56+
}
57+
58+
public String getCode() {
59+
return this.code;
60+
}
61+
62+
public void setCode(String code) {
63+
this.code = code;
64+
}
65+
66+
public String getTotalCount() {
67+
return this.totalCount;
68+
}
69+
70+
public void setTotalCount(String totalCount) {
71+
this.totalCount = totalCount;
72+
}
73+
74+
public String getNextToken() {
75+
return this.nextToken;
76+
}
77+
78+
public void setNextToken(String nextToken) {
79+
this.nextToken = nextToken;
80+
}
81+
82+
public String getAccessDeniedDetail() {
83+
return this.accessDeniedDetail;
84+
}
85+
86+
public void setAccessDeniedDetail(String accessDeniedDetail) {
87+
this.accessDeniedDetail = accessDeniedDetail;
88+
}
89+
90+
public List<Item> getData() {
91+
return this.data;
92+
}
93+
94+
public void setData(List<Item> data) {
95+
this.data = data;
96+
}
97+
98+
public static class Item {
99+
100+
private String resourceId;
101+
102+
private String type;
103+
104+
private String status;
105+
106+
private String modifyTime;
107+
108+
private String attribute;
109+
110+
public String getResourceId() {
111+
return this.resourceId;
112+
}
113+
114+
public void setResourceId(String resourceId) {
115+
this.resourceId = resourceId;
116+
}
117+
118+
public String getType() {
119+
return this.type;
120+
}
121+
122+
public void setType(String type) {
123+
this.type = type;
124+
}
125+
126+
public String getStatus() {
127+
return this.status;
128+
}
129+
130+
public void setStatus(String status) {
131+
this.status = status;
132+
}
133+
134+
public String getModifyTime() {
135+
return this.modifyTime;
136+
}
137+
138+
public void setModifyTime(String modifyTime) {
139+
this.modifyTime = modifyTime;
140+
}
141+
142+
public String getAttribute() {
143+
return this.attribute;
144+
}
145+
146+
public void setAttribute(String attribute) {
147+
this.attribute = attribute;
148+
}
149+
}
150+
151+
@Override
152+
public GetResource4ModifyRecordResponse getInstance(UnmarshallerContext context) {
153+
return GetResource4ModifyRecordResponseUnmarshaller.unmarshall(this, context);
154+
}
155+
156+
@Override
157+
public boolean checkShowJsonItemName() {
158+
return false;
159+
}
160+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.bpstudio.model.v20210931;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class GetResult4QueryInstancePrice4ModifyRequest extends RpcAcsRequest<GetResult4QueryInstancePrice4ModifyResponse> {
26+
27+
28+
private String applicationId;
29+
30+
private String taskId;
31+
public GetResult4QueryInstancePrice4ModifyRequest() {
32+
super("BPStudio", "2021-09-31", "GetResult4QueryInstancePrice4Modify", "bpstudio");
33+
setProtocol(ProtocolType.HTTPS);
34+
setMethod(MethodType.POST);
35+
}
36+
37+
public String getApplicationId() {
38+
return this.applicationId;
39+
}
40+
41+
public void setApplicationId(String applicationId) {
42+
this.applicationId = applicationId;
43+
if(applicationId != null){
44+
putBodyParameter("ApplicationId", applicationId);
45+
}
46+
}
47+
48+
public String getTaskId() {
49+
return this.taskId;
50+
}
51+
52+
public void setTaskId(String taskId) {
53+
this.taskId = taskId;
54+
if(taskId != null){
55+
putBodyParameter("TaskId", taskId);
56+
}
57+
}
58+
59+
@Override
60+
public Class<GetResult4QueryInstancePrice4ModifyResponse> getResponseClass() {
61+
return GetResult4QueryInstancePrice4ModifyResponse.class;
62+
}
63+
64+
}

0 commit comments

Comments
 (0)