Skip to content

Commit 2d5dfad

Browse files
committed
Generated java-async 2017-11-10 for Ens.
1 parent 3fdf685 commit 2d5dfad

File tree

6 files changed

+180
-1
lines changed

6 files changed

+180
-1
lines changed

ens-20171110/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-15 Version: 6.0.5
2+
- Generated java-async 2017-11-10 for Ens.
3+
14
2025-04-10 Version: 6.0.4
25
- Generated java-async 2017-11-10 for Ens.
36

ens-20171110/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-ens20171110</artifactId>
6-
<version>6.0.4</version>
6+
<version>6.0.5</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ens20171110</name>
99
<description>Alibaba Cloud Ens (20171110) Async SDK for Java

ens-20171110/src/main/java/com/aliyun/sdk/service/ens20171110/models/DescribeEnsEipAddressesResponseBody.java

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,25 @@ public DescribeEnsEipAddressesResponseBody build() {
170170
* <p>DescribeEnsEipAddressesResponseBody</p>
171171
*/
172172
public static class Tag extends TeaModel {
173+
@com.aliyun.core.annotation.NameInMap("Key")
174+
private String key;
175+
173176
@com.aliyun.core.annotation.NameInMap("TagKey")
177+
@Deprecated
174178
private String tagKey;
175179

176180
@com.aliyun.core.annotation.NameInMap("TagValue")
181+
@Deprecated
177182
private String tagValue;
178183

184+
@com.aliyun.core.annotation.NameInMap("Value")
185+
private String value;
186+
179187
private Tag(Builder builder) {
188+
this.key = builder.key;
180189
this.tagKey = builder.tagKey;
181190
this.tagValue = builder.tagValue;
191+
this.value = builder.value;
182192
}
183193

184194
public static Builder builder() {
@@ -189,6 +199,13 @@ public static Tag create() {
189199
return builder().build();
190200
}
191201

202+
/**
203+
* @return key
204+
*/
205+
public String getKey() {
206+
return this.key;
207+
}
208+
192209
/**
193210
* @return tagKey
194211
*/
@@ -203,18 +220,37 @@ public String getTagValue() {
203220
return this.tagValue;
204221
}
205222

223+
/**
224+
* @return value
225+
*/
226+
public String getValue() {
227+
return this.value;
228+
}
229+
206230
public static final class Builder {
231+
private String key;
207232
private String tagKey;
208233
private String tagValue;
234+
private String value;
209235

210236
private Builder() {
211237
}
212238

213239
private Builder(Tag model) {
240+
this.key = model.key;
214241
this.tagKey = model.tagKey;
215242
this.tagValue = model.tagValue;
243+
this.value = model.value;
216244
}
217245

246+
/**
247+
* Key.
248+
*/
249+
public Builder key(String key) {
250+
this.key = key;
251+
return this;
252+
}
253+
218254
/**
219255
* TagKey.
220256
*/
@@ -231,6 +267,14 @@ public Builder tagValue(String tagValue) {
231267
return this;
232268
}
233269

270+
/**
271+
* Value.
272+
*/
273+
public Builder value(String value) {
274+
this.value = value;
275+
return this;
276+
}
277+
234278
public Tag build() {
235279
return new Tag(this);
236280
}

ens-20171110/src/main/java/com/aliyun/sdk/service/ens20171110/models/DescribeNatGatewaysResponseBody.java

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,25 @@ public IpLists build() {
281281
* <p>DescribeNatGatewaysResponseBody</p>
282282
*/
283283
public static class Tags extends TeaModel {
284+
@com.aliyun.core.annotation.NameInMap("Key")
285+
private String key;
286+
284287
@com.aliyun.core.annotation.NameInMap("TagKey")
288+
@Deprecated
285289
private String tagKey;
286290

287291
@com.aliyun.core.annotation.NameInMap("TagValue")
292+
@Deprecated
288293
private String tagValue;
289294

295+
@com.aliyun.core.annotation.NameInMap("Value")
296+
private String value;
297+
290298
private Tags(Builder builder) {
299+
this.key = builder.key;
291300
this.tagKey = builder.tagKey;
292301
this.tagValue = builder.tagValue;
302+
this.value = builder.value;
293303
}
294304

295305
public static Builder builder() {
@@ -300,6 +310,13 @@ public static Tags create() {
300310
return builder().build();
301311
}
302312

313+
/**
314+
* @return key
315+
*/
316+
public String getKey() {
317+
return this.key;
318+
}
319+
303320
/**
304321
* @return tagKey
305322
*/
@@ -314,18 +331,37 @@ public String getTagValue() {
314331
return this.tagValue;
315332
}
316333

334+
/**
335+
* @return value
336+
*/
337+
public String getValue() {
338+
return this.value;
339+
}
340+
317341
public static final class Builder {
342+
private String key;
318343
private String tagKey;
319344
private String tagValue;
345+
private String value;
320346

321347
private Builder() {
322348
}
323349

324350
private Builder(Tags model) {
351+
this.key = model.key;
325352
this.tagKey = model.tagKey;
326353
this.tagValue = model.tagValue;
354+
this.value = model.value;
327355
}
328356

357+
/**
358+
* Key.
359+
*/
360+
public Builder key(String key) {
361+
this.key = key;
362+
return this;
363+
}
364+
329365
/**
330366
* TagKey.
331367
*/
@@ -342,6 +378,14 @@ public Builder tagValue(String tagValue) {
342378
return this;
343379
}
344380

381+
/**
382+
* Value.
383+
*/
384+
public Builder value(String value) {
385+
this.value = value;
386+
return this;
387+
}
388+
345389
public Tags build() {
346390
return new Tags(this);
347391
}

ens-20171110/src/main/java/com/aliyun/sdk/service/ens20171110/models/DescribeNetworksResponseBody.java

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,15 +224,25 @@ public RouteTableIds build() {
224224
* <p>DescribeNetworksResponseBody</p>
225225
*/
226226
public static class Tag extends TeaModel {
227+
@com.aliyun.core.annotation.NameInMap("Key")
228+
private String key;
229+
227230
@com.aliyun.core.annotation.NameInMap("TagKey")
231+
@Deprecated
228232
private String tagKey;
229233

230234
@com.aliyun.core.annotation.NameInMap("TagValue")
235+
@Deprecated
231236
private String tagValue;
232237

238+
@com.aliyun.core.annotation.NameInMap("Value")
239+
private String value;
240+
233241
private Tag(Builder builder) {
242+
this.key = builder.key;
234243
this.tagKey = builder.tagKey;
235244
this.tagValue = builder.tagValue;
245+
this.value = builder.value;
236246
}
237247

238248
public static Builder builder() {
@@ -243,6 +253,13 @@ public static Tag create() {
243253
return builder().build();
244254
}
245255

256+
/**
257+
* @return key
258+
*/
259+
public String getKey() {
260+
return this.key;
261+
}
262+
246263
/**
247264
* @return tagKey
248265
*/
@@ -257,18 +274,37 @@ public String getTagValue() {
257274
return this.tagValue;
258275
}
259276

277+
/**
278+
* @return value
279+
*/
280+
public String getValue() {
281+
return this.value;
282+
}
283+
260284
public static final class Builder {
285+
private String key;
261286
private String tagKey;
262287
private String tagValue;
288+
private String value;
263289

264290
private Builder() {
265291
}
266292

267293
private Builder(Tag model) {
294+
this.key = model.key;
268295
this.tagKey = model.tagKey;
269296
this.tagValue = model.tagValue;
297+
this.value = model.value;
270298
}
271299

300+
/**
301+
* Key.
302+
*/
303+
public Builder key(String key) {
304+
this.key = key;
305+
return this;
306+
}
307+
272308
/**
273309
* TagKey.
274310
*/
@@ -285,6 +321,14 @@ public Builder tagValue(String tagValue) {
285321
return this;
286322
}
287323

324+
/**
325+
* Value.
326+
*/
327+
public Builder value(String value) {
328+
this.value = value;
329+
return this;
330+
}
331+
288332
public Tag build() {
289333
return new Tag(this);
290334
}

ens-20171110/src/main/java/com/aliyun/sdk/service/ens20171110/models/DescribeVSwitchesResponseBody.java

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,25 @@ public DescribeVSwitchesResponseBody build() {
170170
* <p>DescribeVSwitchesResponseBody</p>
171171
*/
172172
public static class Tag extends TeaModel {
173+
@com.aliyun.core.annotation.NameInMap("Key")
174+
private String key;
175+
173176
@com.aliyun.core.annotation.NameInMap("TagKey")
177+
@Deprecated
174178
private String tagKey;
175179

176180
@com.aliyun.core.annotation.NameInMap("TagValue")
181+
@Deprecated
177182
private String tagValue;
178183

184+
@com.aliyun.core.annotation.NameInMap("Value")
185+
private String value;
186+
179187
private Tag(Builder builder) {
188+
this.key = builder.key;
180189
this.tagKey = builder.tagKey;
181190
this.tagValue = builder.tagValue;
191+
this.value = builder.value;
182192
}
183193

184194
public static Builder builder() {
@@ -189,6 +199,13 @@ public static Tag create() {
189199
return builder().build();
190200
}
191201

202+
/**
203+
* @return key
204+
*/
205+
public String getKey() {
206+
return this.key;
207+
}
208+
192209
/**
193210
* @return tagKey
194211
*/
@@ -203,18 +220,37 @@ public String getTagValue() {
203220
return this.tagValue;
204221
}
205222

223+
/**
224+
* @return value
225+
*/
226+
public String getValue() {
227+
return this.value;
228+
}
229+
206230
public static final class Builder {
231+
private String key;
207232
private String tagKey;
208233
private String tagValue;
234+
private String value;
209235

210236
private Builder() {
211237
}
212238

213239
private Builder(Tag model) {
240+
this.key = model.key;
214241
this.tagKey = model.tagKey;
215242
this.tagValue = model.tagValue;
243+
this.value = model.value;
216244
}
217245

246+
/**
247+
* Key.
248+
*/
249+
public Builder key(String key) {
250+
this.key = key;
251+
return this;
252+
}
253+
218254
/**
219255
* TagKey.
220256
*/
@@ -231,6 +267,14 @@ public Builder tagValue(String tagValue) {
231267
return this;
232268
}
233269

270+
/**
271+
* Value.
272+
*/
273+
public Builder value(String value) {
274+
this.value = value;
275+
return this;
276+
}
277+
234278
public Tag build() {
235279
return new Tag(this);
236280
}

0 commit comments

Comments
 (0)