Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21eb99f

Browse files
committed
EHPC SDK Auto Released By qianzheng.llc,Version:1.11.0
发布日志: 1, New APIs for visual service (VNC). 2, New APIs for software management. 3, New APIs for CPFS filesystem.
1 parent 702992e commit 21eb99f

File tree

163 files changed

+4511
-204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+4511
-204
lines changed

aliyun-java-sdk-ehpc/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-04-10 Version: 1.11.0
2+
1, New APIs for visual service (VNC).
3+
2, New APIs for software management.
4+
3, New APIs for CPFS filesystem.
5+
16
2018-12-13 Version: 1.10.0
27
1, Add SystemDiskSize in CreateCluster and AddNodes, add more parameters in RecoverCluster
38

aliyun-java-sdk-ehpc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-ehpc</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.10.0</version>
6+
<version>1.11.0</version>
77
<name>aliyun-java-sdk-ehpc</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,7 +31,7 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>4.1.1</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>

aliyun-java-sdk-ehpc/src/main/java/com/aliyuncs/ehpc/model/v20180412/AddContainerAppResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
package com.aliyuncs.ehpc.model.v20180412;
1616

17-
import java.util.List;
18-
import java.util.Map;
17+
import java.util.List;
1918
import com.aliyuncs.AcsResponse;
2019
import com.aliyuncs.ehpc.transform.v20180412.AddContainerAppResponseUnmarshaller;
2120
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-ehpc/src/main/java/com/aliyuncs/ehpc/model/v20180412/AddLocalNodesResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
package com.aliyuncs.ehpc.model.v20180412;
1616

17-
import java.util.List;
18-
import java.util.Map;
17+
import java.util.List;
1918
import com.aliyuncs.AcsResponse;
2019
import com.aliyuncs.ehpc.transform.v20180412.AddLocalNodesResponseUnmarshaller;
2120
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-ehpc/src/main/java/com/aliyuncs/ehpc/model/v20180412/AddNodesRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public AddNodesRequest() {
4242

4343
private String imageOwnerAlias;
4444

45+
private String vSwitchId;
46+
4547
private String periodUnit;
4648

4749
private String autoRenew;
@@ -54,6 +56,8 @@ public AddNodesRequest() {
5456

5557
private String instanceType;
5658

59+
private String zoneId;
60+
5761
private String computeSpotPriceLimit;
5862

5963
public Integer getAutoRenewPeriod() {
@@ -144,6 +148,17 @@ public void setImageOwnerAlias(String imageOwnerAlias) {
144148
}
145149
}
146150

151+
public String getVSwitchId() {
152+
return this.vSwitchId;
153+
}
154+
155+
public void setVSwitchId(String vSwitchId) {
156+
this.vSwitchId = vSwitchId;
157+
if(vSwitchId != null){
158+
putQueryParameter("VSwitchId", vSwitchId);
159+
}
160+
}
161+
147162
public String getPeriodUnit() {
148163
return this.periodUnit;
149164
}
@@ -210,6 +225,17 @@ public void setInstanceType(String instanceType) {
210225
}
211226
}
212227

228+
public String getZoneId() {
229+
return this.zoneId;
230+
}
231+
232+
public void setZoneId(String zoneId) {
233+
this.zoneId = zoneId;
234+
if(zoneId != null){
235+
putQueryParameter("ZoneId", zoneId);
236+
}
237+
}
238+
213239
public String getComputeSpotPriceLimit() {
214240
return this.computeSpotPriceLimit;
215241
}

aliyun-java-sdk-ehpc/src/main/java/com/aliyuncs/ehpc/model/v20180412/AddNodesResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
package com.aliyuncs.ehpc.model.v20180412;
1616

17-
import java.util.List;
18-
import java.util.Map;
17+
import java.util.List;
1918
import com.aliyuncs.AcsResponse;
2019
import com.aliyuncs.ehpc.transform.v20180412.AddNodesResponseUnmarshaller;
2120
import com.aliyuncs.transform.UnmarshallerContext;
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.ehpc.model.v20180412;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class AddQueueRequest extends RpcAcsRequest<AddQueueResponse> {
24+
25+
public AddQueueRequest() {
26+
super("EHPC", "2018-04-12", "AddQueue", "ehs");
27+
}
28+
29+
private String queueName;
30+
31+
private String clusterId;
32+
33+
public String getQueueName() {
34+
return this.queueName;
35+
}
36+
37+
public void setQueueName(String queueName) {
38+
this.queueName = queueName;
39+
if(queueName != null){
40+
putQueryParameter("QueueName", queueName);
41+
}
42+
}
43+
44+
public String getClusterId() {
45+
return this.clusterId;
46+
}
47+
48+
public void setClusterId(String clusterId) {
49+
this.clusterId = clusterId;
50+
if(clusterId != null){
51+
putQueryParameter("ClusterId", clusterId);
52+
}
53+
}
54+
55+
@Override
56+
public Class<AddQueueResponse> getResponseClass() {
57+
return AddQueueResponse.class;
58+
}
59+
60+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.ehpc.model.v20180412;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.ehpc.transform.v20180412.AddQueueResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AddQueueResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
public String getRequestId() {
30+
return this.requestId;
31+
}
32+
33+
public void setRequestId(String requestId) {
34+
this.requestId = requestId;
35+
}
36+
37+
@Override
38+
public AddQueueResponse getInstance(UnmarshallerContext context) {
39+
return AddQueueResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
}

aliyun-java-sdk-ehpc/src/main/java/com/aliyuncs/ehpc/model/v20180412/AddUsersResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.ehpc.model.v20180412;
16-
17-
import java.util.Map;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.ehpc.transform.v20180412.AddUsersResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;

0 commit comments

Comments
 (0)