Skip to content

Commit

Permalink
Add CidrList Limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 3, 2023
1 parent 91b8856 commit 541c421
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
4 changes: 4 additions & 0 deletions aliyun-java-sdk-vpc/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2023-07-03 Version: 3.2.27
- Add CidrList Limit.
- Delete CreateNatIp invalid fields.

2023-06-30 Version: 3.2.26
- Support HA VPN.
- Api Type tag.
Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-vpc/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-vpc</artifactId>
<packaging>jar</packaging>
<version>3.2.26</version>
<version>3.2.27</version>
<name>aliyun-java-sdk-vpc</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 @@ -25,8 +25,6 @@
public class CreateNatIpRequest extends RpcAcsRequest<CreateNatIpResponse> {


private String natIpCidrId;

private Long resourceOwnerId;

private String natIpName;
Expand Down Expand Up @@ -57,17 +55,6 @@ public CreateNatIpRequest() {
} catch (Exception e) {}
}

public String getNatIpCidrId() {
return this.natIpCidrId;
}

public void setNatIpCidrId(String natIpCidrId) {
this.natIpCidrId = natIpCidrId;
if(natIpCidrId != null){
putQueryParameter("NatIpCidrId", natIpCidrId);
}
}

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

0 comments on commit 541c421

Please sign in to comment.