File tree Expand file tree Collapse file tree 5 files changed +44
-14
lines changed
src/main/java/com/aliyuncs/ecs/model/v20140526 Expand file tree Collapse file tree 5 files changed +44
-14
lines changed Original file line number Diff line number Diff line change
1
+ 2019-03-28 Version: 4.16.4
2
+ 1, Add multiple language support in DescribeZones
3
+ 2, Add gray parameter in CreateDisk
4
+
1
5
2019-03-13 Version: 4.16.3
2
6
1, add DescribeDemands interface
3
7
Original file line number Diff line number Diff line change 3
3
<groupId >com.aliyun</groupId >
4
4
<artifactId >aliyun-java-sdk-ecs</artifactId >
5
5
<packaging >jar</packaging >
6
- <version >4.16.3 </version >
6
+ <version >4.16.4 </version >
7
7
<name >aliyun-java-sdk-ecs</name >
8
8
<url >http://www.aliyun.com</url >
9
9
<description >Aliyun Open API SDK for Java
Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ public CreateDiskRequest() {
57
57
58
58
private String kMSKeyId ;
59
59
60
+ private String advancedFeatures ;
61
+
60
62
public Long getResourceOwnerId () {
61
63
return this .resourceOwnerId ;
62
64
}
@@ -225,6 +227,17 @@ public void setKMSKeyId(String kMSKeyId) {
225
227
}
226
228
}
227
229
230
+ public String getAdvancedFeatures () {
231
+ return this .advancedFeatures ;
232
+ }
233
+
234
+ public void setAdvancedFeatures (String advancedFeatures ) {
235
+ this .advancedFeatures = advancedFeatures ;
236
+ if (advancedFeatures != null ){
237
+ putQueryParameter ("AdvancedFeatures" , advancedFeatures );
238
+ }
239
+ }
240
+
228
241
public static class Tag {
229
242
230
243
private String value ;
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ public DescribeZonesRequest() {
34
34
35
35
private String ownerAccount ;
36
36
37
+ private String acceptLanguage ;
38
+
37
39
private Long ownerId ;
38
40
39
41
private String instanceChargeType ;
@@ -84,6 +86,17 @@ public void setOwnerAccount(String ownerAccount) {
84
86
}
85
87
}
86
88
89
+ public String getAcceptLanguage () {
90
+ return this .acceptLanguage ;
91
+ }
92
+
93
+ public void setAcceptLanguage (String acceptLanguage ) {
94
+ this .acceptLanguage = acceptLanguage ;
95
+ if (acceptLanguage != null ){
96
+ putQueryParameter ("AcceptLanguage" , acceptLanguage );
97
+ }
98
+ }
99
+
87
100
public Long getOwnerId () {
88
101
return this .ownerId ;
89
102
}
Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ public ImportImageRequest() {
33
33
34
34
private String resourceOwnerAccount ;
35
35
36
- private String imageName ;
37
-
38
36
private String roleName ;
39
37
40
38
private String description ;
@@ -45,6 +43,8 @@ public ImportImageRequest() {
45
43
46
44
private String platform ;
47
45
46
+ private String imageName ;
47
+
48
48
private String architecture ;
49
49
50
50
public List <DiskDeviceMapping > getDiskDeviceMappings () {
@@ -87,17 +87,6 @@ public void setResourceOwnerAccount(String resourceOwnerAccount) {
87
87
}
88
88
}
89
89
90
- public String getImageName () {
91
- return this .imageName ;
92
- }
93
-
94
- public void setImageName (String imageName ) {
95
- this .imageName = imageName ;
96
- if (imageName != null ){
97
- putQueryParameter ("ImageName" , imageName );
98
- }
99
- }
100
-
101
90
public String getRoleName () {
102
91
return this .roleName ;
103
92
}
@@ -153,6 +142,17 @@ public void setPlatform(String platform) {
153
142
}
154
143
}
155
144
145
+ public String getImageName () {
146
+ return this .imageName ;
147
+ }
148
+
149
+ public void setImageName (String imageName ) {
150
+ this .imageName = imageName ;
151
+ if (imageName != null ){
152
+ putQueryParameter ("ImageName" , imageName );
153
+ }
154
+ }
155
+
156
156
public String getArchitecture () {
157
157
return this .architecture ;
158
158
}
You can’t perform that action at this time.
0 commit comments