@@ -113,6 +113,81 @@ public ListAppsResponseBody build() {
113
113
114
114
}
115
115
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
+ }
116
191
/**
117
192
*
118
193
* {@link ListAppsResponseBody} extends {@link TeaModel}
@@ -150,6 +225,9 @@ public static class Result extends TeaModel {
150
225
@ com .aliyun .core .annotation .NameInMap ("status" )
151
226
private String status ;
152
227
228
+ @ com .aliyun .core .annotation .NameInMap ("tags" )
229
+ private java .util .List <Tags > tags ;
230
+
153
231
@ com .aliyun .core .annotation .NameInMap ("version" )
154
232
private String version ;
155
233
@@ -164,6 +242,7 @@ private Result(Builder builder) {
164
242
this .ownerId = builder .ownerId ;
165
243
this .regionId = builder .regionId ;
166
244
this .status = builder .status ;
245
+ this .tags = builder .tags ;
167
246
this .version = builder .version ;
168
247
}
169
248
@@ -245,6 +324,13 @@ public String getStatus() {
245
324
return this .status ;
246
325
}
247
326
327
+ /**
328
+ * @return tags
329
+ */
330
+ public java .util .List <Tags > getTags () {
331
+ return this .tags ;
332
+ }
333
+
248
334
/**
249
335
* @return version
250
336
*/
@@ -263,6 +349,7 @@ public static final class Builder {
263
349
private String ownerId ;
264
350
private String regionId ;
265
351
private String status ;
352
+ private java .util .List <Tags > tags ;
266
353
private String version ;
267
354
268
355
private Builder () {
@@ -279,6 +366,7 @@ private Builder(Result model) {
279
366
this .ownerId = model .ownerId ;
280
367
this .regionId = model .regionId ;
281
368
this .status = model .status ;
369
+ this .tags = model .tags ;
282
370
this .version = model .version ;
283
371
}
284
372
@@ -377,6 +465,14 @@ public Builder status(String status) {
377
465
return this ;
378
466
}
379
467
468
+ /**
469
+ * tags.
470
+ */
471
+ public Builder tags (java .util .List <Tags > tags ) {
472
+ this .tags = tags ;
473
+ return this ;
474
+ }
475
+
380
476
/**
381
477
* version.
382
478
*/
0 commit comments