Skip to content

Commit

Permalink
ECS-workbench upgrade, add Container involved params.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Aug 31, 2023
1 parent e1a266e commit 780b547
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-ecs-workbench/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-08-31 Version: 1.0.4
- ECS-workbench upgrade, add Container involved params.

2023-08-21 Version: 1.0.3
- ECS-workbench upgrade, add fixedHeight and fixedWidth parameters.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-ecs-workbench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-ecs-workbench</artifactId>
<packaging>jar</packaging>
<version>1.0.3</version>
<version>1.0.4</version>
<name>aliyun-java-sdk-ecs-workbench</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 @@ -61,6 +61,7 @@ public void setInstanceLoginInfo(InstanceLoginInfo instanceLoginInfo) {
putQueryParameter("InstanceLoginInfo.ExpireTime" , instanceLoginInfo.getExpireTime());
putQueryParameter("InstanceLoginInfo.Certificate" , instanceLoginInfo.getCertificate());
putQueryParameter("InstanceLoginInfo.AuthenticationType" , instanceLoginInfo.getAuthenticationType());
putQueryParameter("InstanceLoginInfo.DockerExec" , instanceLoginInfo.getDockerExec());
putQueryParameter("InstanceLoginInfo.Protocol" , instanceLoginInfo.getBizProtocol());
putQueryParameter("InstanceLoginInfo.Password" , instanceLoginInfo.getPassword());
putQueryParameter("InstanceLoginInfo.InstanceId" , instanceLoginInfo.getInstanceId());
Expand Down Expand Up @@ -97,6 +98,7 @@ public void setInstanceLoginInfo(InstanceLoginInfo instanceLoginInfo) {
putQueryParameter("InstanceLoginInfo.Options.NotificationRetryLimit" , instanceLoginInfo.getOptions().getNotificationRetryLimit());
}
putQueryParameter("InstanceLoginInfo.InstanceType" , instanceLoginInfo.getInstanceType());
putQueryParameter("InstanceLoginInfo.DockerContainerName" , instanceLoginInfo.getDockerContainerName());
putQueryParameter("InstanceLoginInfo.PassPhrase" , instanceLoginInfo.getPassPhrase());
putQueryParameter("InstanceLoginInfo.DurationSeconds" , instanceLoginInfo.getDurationSeconds());
putQueryParameter("InstanceLoginInfo.NetworkAccessMode" , instanceLoginInfo.getNetworkAccessMode());
Expand Down Expand Up @@ -158,6 +160,8 @@ public static class InstanceLoginInfo {

private String authenticationType;

private String dockerExec;

private String protocol;

private String password;
Expand All @@ -176,6 +180,8 @@ public static class InstanceLoginInfo {

private String instanceType;

private String dockerContainerName;

private String passPhrase;

private Long durationSeconds;
Expand Down Expand Up @@ -208,6 +214,14 @@ public void setAuthenticationType(String authenticationType) {
this.authenticationType = authenticationType;
}

public String getDockerExec() {
return this.dockerExec;
}

public void setDockerExec(String dockerExec) {
this.dockerExec = dockerExec;
}

public String getBizProtocol() {
return this.protocol;
}
Expand Down Expand Up @@ -280,6 +294,14 @@ public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}

public String getDockerContainerName() {
return this.dockerContainerName;
}

public void setDockerContainerName(String dockerContainerName) {
this.dockerContainerName = dockerContainerName;
}

public String getPassPhrase() {
return this.passPhrase;
}
Expand Down

0 comments on commit 780b547

Please sign in to comment.