Skip to content

Commit 5c5adcb

Browse files
committed
EDAS SDK Auto Released By owen.zw,Version:2.46.4
发布日志: 1, Add 'ReleaseType' field into DeployApplication API
1 parent 03fc9d8 commit 5c5adcb

File tree

3 files changed

+56
-40
lines changed

3 files changed

+56
-40
lines changed

aliyun-java-sdk-edas/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-05-13 Version: 2.46.4
2+
1, Add 'ReleaseType' field into DeployApplication API
3+
14
2019-05-13 Version: 2.46.2
25
1, Release ContinuePipeline API.
36

aliyun-java-sdk-edas/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-edas</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.46.2</version>
6+
<version>2.46.4</version>
77
<name>aliyun-java-sdk-edas</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-edas/src/main/java/com/aliyuncs/edas/model/v20170801/DeployApplicationRequest.java

Lines changed: 52 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,24 @@ public DeployApplicationRequest() {
3333

3434
private String componentIds;
3535

36-
private String appId;
37-
38-
private String imageUrl;
39-
4036
private String groupId;
4137

4238
private Integer batchWaitTime;
4339

40+
private Long releaseType;
41+
4442
private Integer batch;
4543

4644
private String appEnv;
4745

48-
private String warUrl;
49-
5046
private String packageVersion;
5147

48+
private String appId;
49+
50+
private String imageUrl;
51+
52+
private String warUrl;
53+
5254
private String desc;
5355

5456
private String deployType;
@@ -75,28 +77,6 @@ public void setComponentIds(String componentIds) {
7577
}
7678
}
7779

78-
public String getAppId() {
79-
return this.appId;
80-
}
81-
82-
public void setAppId(String appId) {
83-
this.appId = appId;
84-
if(appId != null){
85-
putQueryParameter("AppId", appId);
86-
}
87-
}
88-
89-
public String getImageUrl() {
90-
return this.imageUrl;
91-
}
92-
93-
public void setImageUrl(String imageUrl) {
94-
this.imageUrl = imageUrl;
95-
if(imageUrl != null){
96-
putQueryParameter("ImageUrl", imageUrl);
97-
}
98-
}
99-
10080
public String getGroupId() {
10181
return this.groupId;
10282
}
@@ -119,6 +99,17 @@ public void setBatchWaitTime(Integer batchWaitTime) {
11999
}
120100
}
121101

102+
public Long getReleaseType() {
103+
return this.releaseType;
104+
}
105+
106+
public void setReleaseType(Long releaseType) {
107+
this.releaseType = releaseType;
108+
if(releaseType != null){
109+
putQueryParameter("ReleaseType", releaseType.toString());
110+
}
111+
}
112+
122113
public Integer getBatch() {
123114
return this.batch;
124115
}
@@ -141,17 +132,6 @@ public void setAppEnv(String appEnv) {
141132
}
142133
}
143134

144-
public String getWarUrl() {
145-
return this.warUrl;
146-
}
147-
148-
public void setWarUrl(String warUrl) {
149-
this.warUrl = warUrl;
150-
if(warUrl != null){
151-
putQueryParameter("WarUrl", warUrl);
152-
}
153-
}
154-
155135
public String getPackageVersion() {
156136
return this.packageVersion;
157137
}
@@ -163,6 +143,39 @@ public void setPackageVersion(String packageVersion) {
163143
}
164144
}
165145

146+
public String getAppId() {
147+
return this.appId;
148+
}
149+
150+
public void setAppId(String appId) {
151+
this.appId = appId;
152+
if(appId != null){
153+
putQueryParameter("AppId", appId);
154+
}
155+
}
156+
157+
public String getImageUrl() {
158+
return this.imageUrl;
159+
}
160+
161+
public void setImageUrl(String imageUrl) {
162+
this.imageUrl = imageUrl;
163+
if(imageUrl != null){
164+
putQueryParameter("ImageUrl", imageUrl);
165+
}
166+
}
167+
168+
public String getWarUrl() {
169+
return this.warUrl;
170+
}
171+
172+
public void setWarUrl(String warUrl) {
173+
this.warUrl = warUrl;
174+
if(warUrl != null){
175+
putQueryParameter("WarUrl", warUrl);
176+
}
177+
}
178+
166179
public String getDesc() {
167180
return this.desc;
168181
}

0 commit comments

Comments
 (0)