Skip to content

Commit eb6b576

Browse files
committed
Generated java-async 2019-06-11 for emas-appmonitor.
1 parent 18920b5 commit eb6b576

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

emas-appmonitor-20190611/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-09 Version: 1.0.3
2+
- Generated java-async 2019-06-11 for emas-appmonitor.
3+
14
2025-04-02 Version: 1.0.2
25
- Generated java-async 2019-06-11 for emas-appmonitor.
36

emas-appmonitor-20190611/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-emas_appmonitor20190611</artifactId>
6-
<version>1.0.2</version>
6+
<version>1.0.3</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-emas_appmonitor20190611</name>
99
<description>Alibaba Cloud emas-appmonitor (20190611) Async SDK for Java

emas-appmonitor-20190611/src/main/java/com/aliyun/sdk/service/emas_appmonitor20190611/models/GetSymbolicFilesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ public class GetSymbolicFilesRequest extends Request {
2626
@com.aliyun.core.annotation.NameInMap("AppVersion")
2727
private String appVersion;
2828

29+
@com.aliyun.core.annotation.Body
30+
@com.aliyun.core.annotation.NameInMap("BuildId")
31+
private String buildId;
32+
2933
@com.aliyun.core.annotation.Body
3034
@com.aliyun.core.annotation.NameInMap("EndTime")
3135
private Long endTime;
@@ -70,6 +74,7 @@ private GetSymbolicFilesRequest(Builder builder) {
7074
super(builder);
7175
this.appKey = builder.appKey;
7276
this.appVersion = builder.appVersion;
77+
this.buildId = builder.buildId;
7378
this.endTime = builder.endTime;
7479
this.exportStatus = builder.exportStatus;
7580
this.fileName = builder.fileName;
@@ -108,6 +113,13 @@ public String getAppVersion() {
108113
return this.appVersion;
109114
}
110115

116+
/**
117+
* @return buildId
118+
*/
119+
public String getBuildId() {
120+
return this.buildId;
121+
}
122+
111123
/**
112124
* @return endTime
113125
*/
@@ -174,6 +186,7 @@ public String getUuid() {
174186
public static final class Builder extends Request.Builder<GetSymbolicFilesRequest, Builder> {
175187
private Long appKey;
176188
private String appVersion;
189+
private String buildId;
177190
private Long endTime;
178191
private String exportStatus;
179192
private String fileName;
@@ -192,6 +205,7 @@ private Builder(GetSymbolicFilesRequest request) {
192205
super(request);
193206
this.appKey = request.appKey;
194207
this.appVersion = request.appVersion;
208+
this.buildId = request.buildId;
195209
this.endTime = request.endTime;
196210
this.exportStatus = request.exportStatus;
197211
this.fileName = request.fileName;
@@ -225,6 +239,15 @@ public Builder appVersion(String appVersion) {
225239
return this;
226240
}
227241

242+
/**
243+
* BuildId.
244+
*/
245+
public Builder buildId(String buildId) {
246+
this.putBodyParameter("BuildId", buildId);
247+
this.buildId = buildId;
248+
return this;
249+
}
250+
228251
/**
229252
* EndTime.
230253
*/

0 commit comments

Comments
 (0)