Skip to content

Commit dec0985

Browse files
committed
Update API AddImage: update request parameters body.Size' format has changed.
1 parent 06958fc commit dec0985

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

aiworkspace-20210204/ChangeLog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025-11-18 Version: 7.0.0
2+
- Update API AddImage: update request parameters body.Size' format has changed.
3+
- Update API GetImage: update response parameters Body.Size' format has changed.
4+
- Update API ListImages: update response parameters Body.Images.$.Size' format has changed.
5+
6+
17
2025-11-06 Version: 6.1.0
28
- Support API CreateImageBuild.
39

aiworkspace-20210204/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>aiworkspace20210204</artifactId>
6-
<version>6.1.0</version>
6+
<version>7.0.0</version>
77
<packaging>jar</packaging>
88
<name>aiworkspace20210204</name>
99
<description>Alibaba Cloud AIWorkSpace (20210204) SDK for Java

aiworkspace-20210204/src/main/java/com/aliyun/aiworkspace20210204/models/AddImageRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public class AddImageRequest extends TeaModel {
9090
* <p>2</p>
9191
*/
9292
@NameInMap("Size")
93-
public Integer size;
93+
public Long size;
9494

9595
@NameInMap("SourceId")
9696
public String sourceId;
@@ -160,11 +160,11 @@ public String getName() {
160160
return this.name;
161161
}
162162

163-
public AddImageRequest setSize(Integer size) {
163+
public AddImageRequest setSize(Long size) {
164164
this.size = size;
165165
return this;
166166
}
167-
public Integer getSize() {
167+
public Long getSize() {
168168
return this.size;
169169
}
170170

aiworkspace-20210204/src/main/java/com/aliyun/aiworkspace20210204/models/GetImageResponseBody.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public class GetImageResponseBody extends TeaModel {
9090
* <p>10</p>
9191
*/
9292
@NameInMap("Size")
93-
public Integer size;
93+
public Long size;
9494

9595
/**
9696
* <p>镜像来源 ID</p>
@@ -199,11 +199,11 @@ public String getRequestId() {
199199
return this.requestId;
200200
}
201201

202-
public GetImageResponseBody setSize(Integer size) {
202+
public GetImageResponseBody setSize(Long size) {
203203
this.size = size;
204204
return this;
205205
}
206-
public Integer getSize() {
206+
public Long getSize() {
207207
return this.size;
208208
}
209209

aiworkspace-20210204/src/main/java/com/aliyun/aiworkspace20210204/models/ListImagesResponseBody.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public static class ListImagesResponseBodyImages extends TeaModel {
186186
* <p>2</p>
187187
*/
188188
@NameInMap("Size")
189-
public Integer size;
189+
public Long size;
190190

191191
/**
192192
* <p>镜像来源 ID</p>
@@ -295,11 +295,11 @@ public String getParentUserId() {
295295
return this.parentUserId;
296296
}
297297

298-
public ListImagesResponseBodyImages setSize(Integer size) {
298+
public ListImagesResponseBodyImages setSize(Long size) {
299299
this.size = size;
300300
return this;
301301
}
302-
public Integer getSize() {
302+
public Long getSize() {
303303
return this.size;
304304
}
305305

0 commit comments

Comments
 (0)