Skip to content

Commit

Permalink
release version 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
wb549296 authored and peze committed Oct 8, 2023
1 parent 547e310 commit 8526bf1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
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 @@
2023-10-08 Version: 1.4.6
1、BatchCreateContainerGroups

2023-09-14 Version: 1.4.5
1、Container env support hide

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.4.5</version>
<version>1.4.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 @@ -129,17 +129,17 @@ public BatchCreateContainerGroupsRequest() {

private String dataCachePL;

private String dataCacheProvisionedIops;
private Integer dataCacheProvisionedIops;

private String dataCacheBurstingEnabled;
private Boolean dataCacheBurstingEnabled;

public String getDataCacheBucket() {
return dataCacheBucket;
}

public void setDataCacheBucket(String dataCacheBucket) {
this.dataCacheBucket = dataCacheBucket;
if (dataCacheBucket != null) {
if (null != dataCacheBucket) {
putQueryParameter("DataCacheBucket", dataCacheBucket);
}
}
Expand All @@ -150,29 +150,29 @@ public String getDataCachePL() {

public void setDataCachePL(String dataCachePL) {
this.dataCachePL = dataCachePL;
if (dataCachePL != null) {
if (null != dataCachePL) {
putQueryParameter("DataCachePL", dataCachePL);
}
}

public String getDataCacheProvisionedIops() {
public Integer getDataCacheProvisionedIops() {
return dataCacheProvisionedIops;
}

public void setDataCacheProvisionedIops(String dataCacheProvisionedIops) {
public void setDataCacheProvisionedIops(Integer dataCacheProvisionedIops) {
this.dataCacheProvisionedIops = dataCacheProvisionedIops;
if (dataCacheProvisionedIops != null) {
if (null != dataCacheProvisionedIops) {
putQueryParameter("DataCacheProvisionedIops", dataCacheProvisionedIops);
}
}

public String getDataCacheBurstingEnabled() {
public Boolean getDataCacheBurstingEnabled() {
return dataCacheBurstingEnabled;
}

public void setDataCacheBurstingEnabled(String dataCacheBurstingEnabled) {
public void setDataCacheBurstingEnabled(Boolean dataCacheBurstingEnabled) {
this.dataCacheBurstingEnabled = dataCacheBurstingEnabled;
if (dataCacheBurstingEnabled != null) {
if (null != dataCacheBurstingEnabled){
putQueryParameter("DataCacheBurstingEnabled", dataCacheBurstingEnabled);
}
}
Expand Down

0 comments on commit 8526bf1

Please sign in to comment.