Skip to content

Commit c20a4bd

Browse files
committed
Generated java-async 2020-12-03 for pai-dlc.
1 parent 8b37088 commit c20a4bd

File tree

4 files changed

+116
-1
lines changed

4 files changed

+116
-1
lines changed

pai-dlc-20201203/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-17 Version: 1.2.33
2+
- Generated java-async 2020-12-03 for pai-dlc.
3+
14
2025-11-10 Version: 1.2.32
25
- Generated java-async 2020-12-03 for pai-dlc.
36

pai-dlc-20201203/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-pai_dlc20201203</artifactId>
6-
<version>1.2.32</version>
6+
<version>1.2.33</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-pai_dlc20201203</name>
99
<description>Alibaba Cloud pai-dlc (20201203) Async SDK for Java

pai-dlc-20201203/src/main/java/com/aliyun/sdk/service/pai_dlc20201203/models/PodItem.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ public class PodItem extends TeaModel {
4141
@com.aliyun.core.annotation.NameInMap("PodIp")
4242
private String podIp;
4343

44+
@com.aliyun.core.annotation.NameInMap("PodIps")
45+
private java.util.List<PodNetworkInterface> podIps;
46+
4447
@com.aliyun.core.annotation.NameInMap("PodUid")
4548
private String podUid;
4649

@@ -62,6 +65,7 @@ private PodItem(Builder builder) {
6265
this.nodeName = builder.nodeName;
6366
this.podId = builder.podId;
6467
this.podIp = builder.podIp;
68+
this.podIps = builder.podIps;
6569
this.podUid = builder.podUid;
6670
this.status = builder.status;
6771
this.subStatus = builder.subStatus;
@@ -136,6 +140,13 @@ public String getPodIp() {
136140
return this.podIp;
137141
}
138142

143+
/**
144+
* @return podIps
145+
*/
146+
public java.util.List<PodNetworkInterface> getPodIps() {
147+
return this.podIps;
148+
}
149+
139150
/**
140151
* @return podUid
141152
*/
@@ -173,6 +184,7 @@ public static final class Builder {
173184
private String nodeName;
174185
private String podId;
175186
private String podIp;
187+
private java.util.List<PodNetworkInterface> podIps;
176188
private String podUid;
177189
private String status;
178190
private String subStatus;
@@ -190,6 +202,7 @@ private Builder(PodItem model) {
190202
this.nodeName = model.nodeName;
191203
this.podId = model.podId;
192204
this.podIp = model.podIp;
205+
this.podIps = model.podIps;
193206
this.podUid = model.podUid;
194207
this.status = model.status;
195208
this.subStatus = model.subStatus;
@@ -260,6 +273,14 @@ public Builder podIp(String podIp) {
260273
return this;
261274
}
262275

276+
/**
277+
* PodIps.
278+
*/
279+
public Builder podIps(java.util.List<PodNetworkInterface> podIps) {
280+
this.podIps = podIps;
281+
return this;
282+
}
283+
263284
/**
264285
* PodUid.
265286
*/
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package com.aliyun.sdk.service.pai_dlc20201203.models;
3+
4+
import com.aliyun.sdk.gateway.pop.*;
5+
import darabonba.core.*;
6+
import darabonba.core.async.*;
7+
import darabonba.core.sync.*;
8+
import darabonba.core.client.*;
9+
import darabonba.core.RequestModel;
10+
import darabonba.core.TeaModel;
11+
import com.aliyun.sdk.gateway.pop.models.*;
12+
13+
/**
14+
*
15+
* {@link PodNetworkInterface} extends {@link TeaModel}
16+
*
17+
* <p>PodNetworkInterface</p>
18+
*/
19+
public class PodNetworkInterface extends TeaModel {
20+
@com.aliyun.core.annotation.NameInMap("InterfaceName")
21+
private String interfaceName;
22+
23+
@com.aliyun.core.annotation.NameInMap("Ip")
24+
private String ip;
25+
26+
private PodNetworkInterface(Builder builder) {
27+
this.interfaceName = builder.interfaceName;
28+
this.ip = builder.ip;
29+
}
30+
31+
public static Builder builder() {
32+
return new Builder();
33+
}
34+
35+
public static PodNetworkInterface create() {
36+
return builder().build();
37+
}
38+
39+
public Builder toBuilder() {
40+
return new Builder(this);
41+
}
42+
43+
/**
44+
* @return interfaceName
45+
*/
46+
public String getInterfaceName() {
47+
return this.interfaceName;
48+
}
49+
50+
/**
51+
* @return ip
52+
*/
53+
public String getIp() {
54+
return this.ip;
55+
}
56+
57+
public static final class Builder {
58+
private String interfaceName;
59+
private String ip;
60+
61+
private Builder() {
62+
}
63+
64+
private Builder(PodNetworkInterface model) {
65+
this.interfaceName = model.interfaceName;
66+
this.ip = model.ip;
67+
}
68+
69+
/**
70+
* InterfaceName.
71+
*/
72+
public Builder interfaceName(String interfaceName) {
73+
this.interfaceName = interfaceName;
74+
return this;
75+
}
76+
77+
/**
78+
* Ip.
79+
*/
80+
public Builder ip(String ip) {
81+
this.ip = ip;
82+
return this;
83+
}
84+
85+
public PodNetworkInterface build() {
86+
return new PodNetworkInterface(this);
87+
}
88+
89+
}
90+
91+
}

0 commit comments

Comments
 (0)