Skip to content

Commit

Permalink
release version 1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
wb549296 authored and yndu13 committed Nov 20, 2024
1 parent 1fb8ea0 commit 087e55b
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-11-20 Version 1.5.6
1、BatchCreateContainerGroups support gpuDriverVersion

2024-09-11 Version 1.5.5
1、Api support: TagResources、UntagResources、ListTagResources

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.5</version>
<version>1.5.6</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 @@ -139,6 +139,8 @@ public BatchCreateContainerGroupsRequest() {

private Boolean dataCacheBurstingEnabled;

private String gpuDriverVersion;

public String getDataCacheBucket() {
return dataCacheBucket;
}
Expand Down Expand Up @@ -183,6 +185,17 @@ public void setDataCacheBurstingEnabled(Boolean dataCacheBurstingEnabled) {
}
}

public String getGpuDriverVersion() {
return gpuDriverVersion;
}

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

public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
Expand Down

0 comments on commit 087e55b

Please sign in to comment.