Skip to content

Commit

Permalink
release version 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wb549296 authored and yndu13 committed Jun 5, 2024
1 parent 01fbf35 commit 8482538
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-eci/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-06-05 Version 1.5.4
1、CreateContainerGroup support gpuDriverVersion

2024-03-26 Version 1.5.3
1、Add api: ResizeContainerGroupEphemeralStorage
2、Fix SecurityContextSysctls parameters
Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-eci/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-eci</artifactId>
<packaging>jar</packaging>
<version>1.5.3</version>
<version>1.5.4</version>
<name>aliyun-java-sdk-eci</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ public CreateContainerGroupRequest() {

private List<String> computeCategory;

private String gpuDriverVersion;

public Integer getEphemeralStorage() {
return this.ephemeralStorage;
}
Expand Down Expand Up @@ -666,6 +668,17 @@ public void setComputeCategory(List<String> computeCategory) {
}
}

public String getGpuDriverVersion() {
return gpuDriverVersion;
}

public void setGpuDriverVersion(String gpuDriverVersion) {
this.gpuDriverVersion = gpuDriverVersion;
if (gpuDriverVersion != null) {
putQueryParameter("GpuDriverVersion", gpuDriverVersion);
}
}

public List<Tag> getTags() {
return this.tags;
}
Expand Down

0 comments on commit 8482538

Please sign in to comment.