Skip to content

Commit d3eceaf

Browse files
committed
Generated 2016-04-28 for Vpc.
1 parent c8f7411 commit d3eceaf

File tree

64 files changed

+1320
-138
lines changed

Some content is hidden

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

64 files changed

+1320
-138
lines changed

aliyun-java-sdk-vpc/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-07-10 Version: 3.2.30
2+
- Generated 2016-04-28 for `Vpc`.
3+
14
2024-10-25 Version: 3.2.29
25
- Support HA VPN attachment.
36

aliyun-java-sdk-vpc/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-vpc</artifactId>
66
<packaging>jar</packaging>
7-
<version>3.2.29</version>
7+
<version>3.2.30</version>
88
<name>aliyun-java-sdk-vpc</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -91,7 +91,7 @@ http://www.aliyun.com</description>
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-gpg-plugin</artifactId>
94-
<version>1.5</version>
94+
<version>3.1.0</version>
9595
<executions>
9696
<execution>
9797
<id>sign-artifacts</id>
@@ -103,14 +103,14 @@ http://www.aliyun.com</description>
103103
</executions>
104104
</plugin>
105105
<plugin>
106-
<groupId>org.sonatype.plugins</groupId>
107-
<artifactId>nexus-staging-maven-plugin</artifactId>
108-
<version>1.6.3</version>
106+
<groupId>org.sonatype.central</groupId>
107+
<artifactId>central-publishing-maven-plugin</artifactId>
108+
<version>0.8.0</version>
109109
<extensions>true</extensions>
110110
<configuration>
111-
<serverId>sonatype-nexus-staging</serverId>
112-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
113-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
111+
<publishingServerId>central</publishingServerId>
112+
<autoPublish>true</autoPublish>
113+
<waitUntil>published</waitUntil>
114114
</configuration>
115115
</plugin>
116116
</plugins>

aliyun-java-sdk-vpc/src/main/java/com/aliyuncs/vpc/model/v20160428/AllocateEipAddressProRequest.java

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ public class AllocateEipAddressProRequest extends RpcAcsRequest<AllocateEipAddre
3838

3939
private String resourceGroupId;
4040

41+
private List<Tag> tags;
42+
4143
private String netmode;
4244

4345
private String instanceChargeType;
@@ -136,6 +138,20 @@ public void setResourceGroupId(String resourceGroupId) {
136138
}
137139
}
138140

141+
public List<Tag> getTags() {
142+
return this.tags;
143+
}
144+
145+
public void setTags(List<Tag> tags) {
146+
this.tags = tags;
147+
if (tags != null) {
148+
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
149+
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
150+
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
151+
}
152+
}
153+
}
154+
139155
public String getNetmode() {
140156
return this.netmode;
141157
}
@@ -268,6 +284,29 @@ public void setPricingCycle(String pricingCycle) {
268284
if(pricingCycle != null){
269285
putQueryParameter("PricingCycle", pricingCycle);
270286
}
287+
}
288+
289+
public static class Tag {
290+
291+
private String value;
292+
293+
private String key;
294+
295+
public String getValue() {
296+
return this.value;
297+
}
298+
299+
public void setValue(String value) {
300+
this.value = value;
301+
}
302+
303+
public String getKey() {
304+
return this.key;
305+
}
306+
307+
public void setKey(String key) {
308+
this.key = key;
309+
}
271310
}
272311

273312
@Override

aliyun-java-sdk-vpc/src/main/java/com/aliyuncs/vpc/model/v20160428/AllocateEipAddressRequest.java

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public class AllocateEipAddressRequest extends RpcAcsRequest<AllocateEipAddressR
4242

4343
private String zone;
4444

45+
private List<Tag> tags;
46+
4547
private String netmode;
4648

4749
private String instanceChargeType;
@@ -166,6 +168,20 @@ public void setZone(String zone) {
166168
}
167169
}
168170

171+
public List<Tag> getTags() {
172+
return this.tags;
173+
}
174+
175+
public void setTags(List<Tag> tags) {
176+
this.tags = tags;
177+
if (tags != null) {
178+
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
179+
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
180+
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
181+
}
182+
}
183+
}
184+
169185
public String getNetmode() {
170186
return this.netmode;
171187
}
@@ -320,6 +336,29 @@ public void setPricingCycle(String pricingCycle) {
320336
if(pricingCycle != null){
321337
putQueryParameter("PricingCycle", pricingCycle);
322338
}
339+
}
340+
341+
public static class Tag {
342+
343+
private String value;
344+
345+
private String key;
346+
347+
public String getValue() {
348+
return this.value;
349+
}
350+
351+
public void setValue(String value) {
352+
this.value = value;
353+
}
354+
355+
public String getKey() {
356+
return this.key;
357+
}
358+
359+
public void setKey(String key) {
360+
this.key = key;
361+
}
323362
}
324363

325364
@Override

aliyun-java-sdk-vpc/src/main/java/com/aliyuncs/vpc/model/v20160428/AssociateRouteTablesWithVpcGatewayEndpointRequest.java

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ public class AssociateRouteTablesWithVpcGatewayEndpointRequest extends RpcAcsReq
2828

2929
private Long resourceOwnerId;
3030

31-
private Boolean dryRun;
32-
3331
private String clientToken;
3432

35-
private String resourceOwnerAccount;
36-
3733
private String endpointId;
3834

35+
private Boolean dryRun;
36+
37+
private String resourceOwnerAccount;
38+
3939
private String ownerAccount;
4040

4141
private Long ownerId;
@@ -61,17 +61,6 @@ public void setResourceOwnerId(Long resourceOwnerId) {
6161
}
6262
}
6363

64-
public Boolean getDryRun() {
65-
return this.dryRun;
66-
}
67-
68-
public void setDryRun(Boolean dryRun) {
69-
this.dryRun = dryRun;
70-
if(dryRun != null){
71-
putQueryParameter("DryRun", dryRun.toString());
72-
}
73-
}
74-
7564
public String getClientToken() {
7665
return this.clientToken;
7766
}
@@ -83,17 +72,6 @@ public void setClientToken(String clientToken) {
8372
}
8473
}
8574

86-
public String getResourceOwnerAccount() {
87-
return this.resourceOwnerAccount;
88-
}
89-
90-
public void setResourceOwnerAccount(String resourceOwnerAccount) {
91-
this.resourceOwnerAccount = resourceOwnerAccount;
92-
if(resourceOwnerAccount != null){
93-
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
94-
}
95-
}
96-
9775
public String getEndpointId() {
9876
return this.endpointId;
9977
}
@@ -105,6 +83,28 @@ public void setEndpointId(String endpointId) {
10583
}
10684
}
10785

86+
public Boolean getDryRun() {
87+
return this.dryRun;
88+
}
89+
90+
public void setDryRun(Boolean dryRun) {
91+
this.dryRun = dryRun;
92+
if(dryRun != null){
93+
putQueryParameter("DryRun", dryRun.toString());
94+
}
95+
}
96+
97+
public String getResourceOwnerAccount() {
98+
return this.resourceOwnerAccount;
99+
}
100+
101+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
102+
this.resourceOwnerAccount = resourceOwnerAccount;
103+
if(resourceOwnerAccount != null){
104+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
105+
}
106+
}
107+
108108
public String getOwnerAccount() {
109109
return this.ownerAccount;
110110
}

aliyun-java-sdk-vpc/src/main/java/com/aliyuncs/vpc/model/v20160428/AssociateVpcCidrBlockResponse.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ public class AssociateVpcCidrBlockResponse extends AcsResponse {
2626

2727
private String requestId;
2828

29+
private String cidrBlock;
30+
31+
private String ipVersion;
32+
2933
public String getRequestId() {
3034
return this.requestId;
3135
}
@@ -34,6 +38,22 @@ public void setRequestId(String requestId) {
3438
this.requestId = requestId;
3539
}
3640

41+
public String getCidrBlock() {
42+
return this.cidrBlock;
43+
}
44+
45+
public void setCidrBlock(String cidrBlock) {
46+
this.cidrBlock = cidrBlock;
47+
}
48+
49+
public String getIpVersion() {
50+
return this.ipVersion;
51+
}
52+
53+
public void setIpVersion(String ipVersion) {
54+
this.ipVersion = ipVersion;
55+
}
56+
3757
@Override
3858
public AssociateVpcCidrBlockResponse getInstance(UnmarshallerContext context) {
3959
return AssociateVpcCidrBlockResponseUnmarshaller.unmarshall(this, context);

aliyun-java-sdk-vpc/src/main/java/com/aliyuncs/vpc/model/v20160428/CreateCommonBandwidthPackageRequest.java

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ public class CreateCommonBandwidthPackageRequest extends RpcAcsRequest<CreateCom
3838

3939
private String zone;
4040

41+
private List<Tag> tags;
42+
4143
private String resourceOwnerAccount;
4244

4345
private Integer bandwidth;
@@ -128,6 +130,20 @@ public void setZone(String zone) {
128130
}
129131
}
130132

133+
public List<Tag> getTags() {
134+
return this.tags;
135+
}
136+
137+
public void setTags(List<Tag> tags) {
138+
this.tags = tags;
139+
if (tags != null) {
140+
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
141+
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
142+
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
143+
}
144+
}
145+
}
146+
131147
public String getResourceOwnerAccount() {
132148
return this.resourceOwnerAccount;
133149
}
@@ -216,6 +232,29 @@ public void setRatio(Integer ratio) {
216232
if(ratio != null){
217233
putQueryParameter("Ratio", ratio.toString());
218234
}
235+
}
236+
237+
public static class Tag {
238+
239+
private String value;
240+
241+
private String key;
242+
243+
public String getValue() {
244+
return this.value;
245+
}
246+
247+
public void setValue(String value) {
248+
this.value = value;
249+
}
250+
251+
public String getKey() {
252+
return this.key;
253+
}
254+
255+
public void setKey(String key) {
256+
this.key = key;
257+
}
219258
}
220259

221260
@Override

0 commit comments

Comments
 (0)