Skip to content

Commit 4d630f6

Browse files
committed
Update API DescribeAndroidInstanceGroups: update response param.
1 parent cddd2e4 commit 4d630f6

File tree

8 files changed

+92
-3
lines changed

8 files changed

+92
-3
lines changed

eds-aic-20230930/ChangeLog.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2025-03-14 Version: 3.2.2
2+
- Update API DescribeAndroidInstanceGroups: update response param.
3+
- Update API DescribeAndroidInstances: update response param.
4+
- Update API DescribeImageList: update response param.
5+
- Update API DescribeSpec: update response param.
6+
- Update API SendFile: add param TargetFileName.
7+
8+
19
2025-03-13 Version: 3.2.1
210
- Generated java 2023-09-30 for eds-aic.
311

eds-aic-20230930/pom.xml

Lines changed: 3 additions & 3 deletions
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>eds_aic20230930</artifactId>
6-
<version>3.2.1</version>
6+
<version>3.2.2</version>
77
<packaging>jar</packaging>
88
<name>eds_aic20230930</name>
99
<description>Alibaba Cloud eds-aic (20230930) SDK for Java
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>com.aliyun</groupId>
4848
<artifactId>tea-openapi</artifactId>
49-
<version>0.3.6</version>
49+
<version>0.3.7</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>com.aliyun</groupId>
@@ -78,7 +78,7 @@
7878
<plugin>
7979
<groupId>org.apache.maven.plugins</groupId>
8080
<artifactId>maven-gpg-plugin</artifactId>
81-
<version>1.6</version>
81+
<version>3.1.0</version>
8282
<executions>
8383
<execution>
8484
<id>sign-artifacts</id>

eds-aic-20230930/src/main/java/com/aliyun/eds_aic20230930/Client.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3325,6 +3325,10 @@ public SendFileResponse sendFileWithOptions(SendFileRequest request, com.aliyun.
33253325
query.put("SourceFilePath", request.sourceFilePath);
33263326
}
33273327

3328+
if (!com.aliyun.teautil.Common.isUnset(request.targetFileName)) {
3329+
query.put("TargetFileName", request.targetFileName);
3330+
}
3331+
33283332
if (!com.aliyun.teautil.Common.isUnset(request.uploadEndpoint)) {
33293333
query.put("UploadEndpoint", request.uploadEndpoint);
33303334
}

eds-aic-20230930/src/main/java/com/aliyun/eds_aic20230930/models/DescribeAndroidInstanceGroupsResponseBody.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@ public static class DescribeAndroidInstanceGroupsResponseBodyInstanceGroupModel
168168
@NameInMap("Disks")
169169
public java.util.List<DescribeAndroidInstanceGroupsResponseBodyInstanceGroupModelDisks> disks;
170170

171+
@NameInMap("EnableIpv6")
172+
public Boolean enableIpv6;
173+
171174
/**
172175
* <p>The error code.</p>
173176
*
@@ -267,6 +270,9 @@ public static class DescribeAndroidInstanceGroupsResponseBodyInstanceGroupModel
267270
@NameInMap("InstanceGroupStatus")
268271
public String instanceGroupStatus;
269272

273+
@NameInMap("Ipv6Bandwidth")
274+
public Integer ipv6Bandwidth;
275+
270276
/**
271277
* <p>The memory size.</p>
272278
*
@@ -419,6 +425,14 @@ public java.util.List<DescribeAndroidInstanceGroupsResponseBodyInstanceGroupMode
419425
return this.disks;
420426
}
421427

428+
public DescribeAndroidInstanceGroupsResponseBodyInstanceGroupModel setEnableIpv6(Boolean enableIpv6) {
429+
this.enableIpv6 = enableIpv6;
430+
return this;
431+
}
432+
public Boolean getEnableIpv6() {
433+
return this.enableIpv6;
434+
}
435+
422436
public DescribeAndroidInstanceGroupsResponseBodyInstanceGroupModel setErrorCode(String errorCode) {
423437
this.errorCode = errorCode;
424438
return this;
@@ -507,6 +521,14 @@ public String getInstanceGroupStatus() {
507521
return this.instanceGroupStatus;
508522
}
509523

524+
public DescribeAndroidInstanceGroupsResponseBodyInstanceGroupModel setIpv6Bandwidth(Integer ipv6Bandwidth) {
525+
this.ipv6Bandwidth = ipv6Bandwidth;
526+
return this;
527+
}
528+
public Integer getIpv6Bandwidth() {
529+
return this.ipv6Bandwidth;
530+
}
531+
510532
public DescribeAndroidInstanceGroupsResponseBodyInstanceGroupModel setMemory(Integer memory) {
511533
this.memory = memory;
512534
return this;

eds-aic-20230930/src/main/java/com/aliyun/eds_aic20230930/models/DescribeAndroidInstancesResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,9 @@ public static class DescribeAndroidInstancesResponseBodyInstanceModel extends Te
300300
@NameInMap("GmtModified")
301301
public String gmtModified;
302302

303+
@NameInMap("ImageId")
304+
public String imageId;
305+
303306
/**
304307
* <p>The version of the image.</p>
305308
*
@@ -566,6 +569,14 @@ public String getGmtModified() {
566569
return this.gmtModified;
567570
}
568571

572+
public DescribeAndroidInstancesResponseBodyInstanceModel setImageId(String imageId) {
573+
this.imageId = imageId;
574+
return this;
575+
}
576+
public String getImageId() {
577+
return this.imageId;
578+
}
579+
569580
public DescribeAndroidInstancesResponseBodyInstanceModel setImageVersion(String imageVersion) {
570581
this.imageVersion = imageVersion;
571582
return this;

eds-aic-20230930/src/main/java/com/aliyun/eds_aic20230930/models/DescribeImageListResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@ public static class DescribeImageListResponseBodyData extends TeaModel {
155155
@NameInMap("ImageType")
156156
public String imageType;
157157

158+
@NameInMap("ImageVersion")
159+
public String imageVersion;
160+
158161
/**
159162
* <p>The language of the image.</p>
160163
*
@@ -291,6 +294,14 @@ public String getImageType() {
291294
return this.imageType;
292295
}
293296

297+
public DescribeImageListResponseBodyData setImageVersion(String imageVersion) {
298+
this.imageVersion = imageVersion;
299+
return this;
300+
}
301+
public String getImageVersion() {
302+
return this.imageVersion;
303+
}
304+
294305
public DescribeImageListResponseBodyData setLanguage(String language) {
295306
this.language = language;
296307
return this;

eds-aic-20230930/src/main/java/com/aliyun/eds_aic20230930/models/DescribeSpecResponseBody.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ public static class DescribeSpecResponseBodySpecInfoModel extends TeaModel {
8484
@NameInMap("Core")
8585
public Integer core;
8686

87+
@NameInMap("MaxPhoneCount")
88+
public String maxPhoneCount;
89+
8790
/**
8891
* <p>Memory size.</p>
8992
*
@@ -93,6 +96,9 @@ public static class DescribeSpecResponseBodySpecInfoModel extends TeaModel {
9396
@NameInMap("Memory")
9497
public Integer memory;
9598

99+
@NameInMap("MinPhoneCount")
100+
public String minPhoneCount;
101+
96102
@NameInMap("PhoneCount")
97103
public String phoneCount;
98104

@@ -148,6 +154,14 @@ public Integer getCore() {
148154
return this.core;
149155
}
150156

157+
public DescribeSpecResponseBodySpecInfoModel setMaxPhoneCount(String maxPhoneCount) {
158+
this.maxPhoneCount = maxPhoneCount;
159+
return this;
160+
}
161+
public String getMaxPhoneCount() {
162+
return this.maxPhoneCount;
163+
}
164+
151165
public DescribeSpecResponseBodySpecInfoModel setMemory(Integer memory) {
152166
this.memory = memory;
153167
return this;
@@ -156,6 +170,14 @@ public Integer getMemory() {
156170
return this.memory;
157171
}
158172

173+
public DescribeSpecResponseBodySpecInfoModel setMinPhoneCount(String minPhoneCount) {
174+
this.minPhoneCount = minPhoneCount;
175+
return this;
176+
}
177+
public String getMinPhoneCount() {
178+
return this.minPhoneCount;
179+
}
180+
159181
public DescribeSpecResponseBodySpecInfoModel setPhoneCount(String phoneCount) {
160182
this.phoneCount = phoneCount;
161183
return this;

eds-aic-20230930/src/main/java/com/aliyun/eds_aic20230930/models/SendFileRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public class SendFileRequest extends TeaModel {
2121
@NameInMap("SourceFilePath")
2222
public String sourceFilePath;
2323

24+
@NameInMap("TargetFileName")
25+
public String targetFileName;
26+
2427
/**
2528
* <p>The endpoint of the OSS bucket in which the file is stored.</p>
2629
* <blockquote>
@@ -77,6 +80,14 @@ public String getSourceFilePath() {
7780
return this.sourceFilePath;
7881
}
7982

83+
public SendFileRequest setTargetFileName(String targetFileName) {
84+
this.targetFileName = targetFileName;
85+
return this;
86+
}
87+
public String getTargetFileName() {
88+
return this.targetFileName;
89+
}
90+
8091
public SendFileRequest setUploadEndpoint(String uploadEndpoint) {
8192
this.uploadEndpoint = uploadEndpoint;
8293
return this;

0 commit comments

Comments
 (0)