Skip to content

Commit

Permalink
Support new param IoMaxSpec for order related interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Oct 13, 2020
1 parent 7dacf63 commit 7233030
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-alikafka/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020-10-13 Version: 1.2.7
- Support new param IoMaxSpec for order related interface.

2020-10-10 Version: 1.2.6
- Support new param IoMaxSpec for order related interface.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-alikafka/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-alikafka</artifactId>
<packaging>jar</packaging>
<version>1.2.6</version>
<version>1.2.7</version>
<name>aliyun-java-sdk-alikafka</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 @@ -37,6 +37,8 @@ public class CreatePostPayOrderRequest extends RpcAcsRequest<CreatePostPayOrderR

private Integer eipMax;

private String specType;

private Integer deployType;
public CreatePostPayOrderRequest() {
super("alikafka", "2019-09-16", "CreatePostPayOrder", "alikafka");
Expand Down Expand Up @@ -113,6 +115,17 @@ public void setEipMax(Integer eipMax) {
}
}

public String getSpecType() {
return this.specType;
}

public void setSpecType(String specType) {
this.specType = specType;
if(specType != null){
putQueryParameter("SpecType", specType);
}
}

public Integer getDeployType() {
return this.deployType;
}
Expand Down

0 comments on commit 7233030

Please sign in to comment.