Skip to content

Commit 79e3145

Browse files
committed
Generated java-async 2023-06-27 for es-serverless.
1 parent 44ae9f4 commit 79e3145

File tree

3 files changed

+100
-1
lines changed

3 files changed

+100
-1
lines changed

es-serverless-20230627/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-09 Version: 2.0.5
2+
- Generated java-async 2023-06-27 for es-serverless.
3+
14
2025-04-10 Version: 2.0.4
25
- Generated java-async 2023-06-27 for es-serverless.
36

es-serverless-20230627/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-es_serverless20230627</artifactId>
6-
<version>2.0.4</version>
6+
<version>2.0.5</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-es_serverless20230627</name>
99
<description>Alibaba Cloud es-serverless (20230627) Async SDK for Java

es-serverless-20230627/src/main/java/com/aliyun/sdk/service/es_serverless20230627/models/ListAppsResponseBody.java

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,81 @@ public ListAppsResponseBody build() {
113113

114114
}
115115

116+
/**
117+
*
118+
* {@link ListAppsResponseBody} extends {@link TeaModel}
119+
*
120+
* <p>ListAppsResponseBody</p>
121+
*/
122+
public static class Tags extends TeaModel {
123+
@com.aliyun.core.annotation.NameInMap("key")
124+
private String key;
125+
126+
@com.aliyun.core.annotation.NameInMap("value")
127+
private String value;
128+
129+
private Tags(Builder builder) {
130+
this.key = builder.key;
131+
this.value = builder.value;
132+
}
133+
134+
public static Builder builder() {
135+
return new Builder();
136+
}
137+
138+
public static Tags create() {
139+
return builder().build();
140+
}
141+
142+
/**
143+
* @return key
144+
*/
145+
public String getKey() {
146+
return this.key;
147+
}
148+
149+
/**
150+
* @return value
151+
*/
152+
public String getValue() {
153+
return this.value;
154+
}
155+
156+
public static final class Builder {
157+
private String key;
158+
private String value;
159+
160+
private Builder() {
161+
}
162+
163+
private Builder(Tags model) {
164+
this.key = model.key;
165+
this.value = model.value;
166+
}
167+
168+
/**
169+
* key.
170+
*/
171+
public Builder key(String key) {
172+
this.key = key;
173+
return this;
174+
}
175+
176+
/**
177+
* value.
178+
*/
179+
public Builder value(String value) {
180+
this.value = value;
181+
return this;
182+
}
183+
184+
public Tags build() {
185+
return new Tags(this);
186+
}
187+
188+
}
189+
190+
}
116191
/**
117192
*
118193
* {@link ListAppsResponseBody} extends {@link TeaModel}
@@ -150,6 +225,9 @@ public static class Result extends TeaModel {
150225
@com.aliyun.core.annotation.NameInMap("status")
151226
private String status;
152227

228+
@com.aliyun.core.annotation.NameInMap("tags")
229+
private java.util.List<Tags> tags;
230+
153231
@com.aliyun.core.annotation.NameInMap("version")
154232
private String version;
155233

@@ -164,6 +242,7 @@ private Result(Builder builder) {
164242
this.ownerId = builder.ownerId;
165243
this.regionId = builder.regionId;
166244
this.status = builder.status;
245+
this.tags = builder.tags;
167246
this.version = builder.version;
168247
}
169248

@@ -245,6 +324,13 @@ public String getStatus() {
245324
return this.status;
246325
}
247326

327+
/**
328+
* @return tags
329+
*/
330+
public java.util.List<Tags> getTags() {
331+
return this.tags;
332+
}
333+
248334
/**
249335
* @return version
250336
*/
@@ -263,6 +349,7 @@ public static final class Builder {
263349
private String ownerId;
264350
private String regionId;
265351
private String status;
352+
private java.util.List<Tags> tags;
266353
private String version;
267354

268355
private Builder() {
@@ -279,6 +366,7 @@ private Builder(Result model) {
279366
this.ownerId = model.ownerId;
280367
this.regionId = model.regionId;
281368
this.status = model.status;
369+
this.tags = model.tags;
282370
this.version = model.version;
283371
}
284372

@@ -377,6 +465,14 @@ public Builder status(String status) {
377465
return this;
378466
}
379467

468+
/**
469+
* tags.
470+
*/
471+
public Builder tags(java.util.List<Tags> tags) {
472+
this.tags = tags;
473+
return this;
474+
}
475+
380476
/**
381477
* version.
382478
*/

0 commit comments

Comments
 (0)