Skip to content

Commit 18920b5

Browse files
committed
Generated java-async 2021-03-08 for eds-user.
1 parent bcca16d commit 18920b5

File tree

5 files changed

+69
-1
lines changed

5 files changed

+69
-1
lines changed

eds-user-20210308/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-07 Version: 1.0.22
2+
- Generated java-async 2021-03-08 for eds-user.
3+
14
2025-05-22 Version: 1.0.21
25
- Generated java-async 2021-03-08 for eds-user.
36

eds-user-20210308/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-eds_user20210308</artifactId>
6-
<version>1.0.21</version>
6+
<version>1.0.22</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-eds_user20210308</name>
99
<description>Alibaba Cloud eds-user (20210308) Async SDK for Java

eds-user-20210308/src/main/java/com/aliyun/sdk/service/eds_user20210308/models/DescribeUsersRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ public class DescribeUsersRequest extends Request {
7070
@com.aliyun.core.annotation.NameInMap("SolutionId")
7171
private String solutionId;
7272

73+
@com.aliyun.core.annotation.Query
74+
@com.aliyun.core.annotation.NameInMap("Status")
75+
private Integer status;
76+
7377
private DescribeUsersRequest(Builder builder) {
7478
super(builder);
7579
this.bizType = builder.bizType;
@@ -85,6 +89,7 @@ private DescribeUsersRequest(Builder builder) {
8589
this.orgId = builder.orgId;
8690
this.showExtras = builder.showExtras;
8791
this.solutionId = builder.solutionId;
92+
this.status = builder.status;
8893
}
8994

9095
public static Builder builder() {
@@ -191,6 +196,13 @@ public String getSolutionId() {
191196
return this.solutionId;
192197
}
193198

199+
/**
200+
* @return status
201+
*/
202+
public Integer getStatus() {
203+
return this.status;
204+
}
205+
194206
public static final class Builder extends Request.Builder<DescribeUsersRequest, Builder> {
195207
private String bizType;
196208
private java.util.List<String> endUserIds;
@@ -205,6 +217,7 @@ public static final class Builder extends Request.Builder<DescribeUsersRequest,
205217
private String orgId;
206218
private java.util.Map<String, ?> showExtras;
207219
private String solutionId;
220+
private Integer status;
208221

209222
private Builder() {
210223
super();
@@ -225,6 +238,7 @@ private Builder(DescribeUsersRequest request) {
225238
this.orgId = request.orgId;
226239
this.showExtras = request.showExtras;
227240
this.solutionId = request.solutionId;
241+
this.status = request.status;
228242
}
229243

230244
/**
@@ -366,6 +380,15 @@ public Builder solutionId(String solutionId) {
366380
return this;
367381
}
368382

383+
/**
384+
* Status.
385+
*/
386+
public Builder status(Integer status) {
387+
this.putQueryParameter("Status", status);
388+
this.status = status;
389+
return this;
390+
}
391+
369392
@Override
370393
public DescribeUsersRequest build() {
371394
return new DescribeUsersRequest(this);

eds-user-20210308/src/main/java/com/aliyun/sdk/service/eds_user20210308/models/DescribeUsersResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,13 @@ public static class Orgs extends TeaModel {
263263
@com.aliyun.core.annotation.NameInMap("OrgName")
264264
private String orgName;
265265

266+
@com.aliyun.core.annotation.NameInMap("OrgNamePath")
267+
private String orgNamePath;
268+
266269
private Orgs(Builder builder) {
267270
this.orgId = builder.orgId;
268271
this.orgName = builder.orgName;
272+
this.orgNamePath = builder.orgNamePath;
269273
}
270274

271275
public static Builder builder() {
@@ -290,16 +294,25 @@ public String getOrgName() {
290294
return this.orgName;
291295
}
292296

297+
/**
298+
* @return orgNamePath
299+
*/
300+
public String getOrgNamePath() {
301+
return this.orgNamePath;
302+
}
303+
293304
public static final class Builder {
294305
private String orgId;
295306
private String orgName;
307+
private String orgNamePath;
296308

297309
private Builder() {
298310
}
299311

300312
private Builder(Orgs model) {
301313
this.orgId = model.orgId;
302314
this.orgName = model.orgName;
315+
this.orgNamePath = model.orgNamePath;
303316
}
304317

305318
/**
@@ -324,6 +337,14 @@ public Builder orgName(String orgName) {
324337
return this;
325338
}
326339

340+
/**
341+
* OrgNamePath.
342+
*/
343+
public Builder orgNamePath(String orgNamePath) {
344+
this.orgNamePath = orgNamePath;
345+
return this;
346+
}
347+
327348
public Orgs build() {
328349
return new Orgs(this);
329350
}

eds-user-20210308/src/main/java/com/aliyun/sdk/service/eds_user20210308/models/FilterUsersResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,13 @@ public static class OrgList extends TeaModel {
209209
@com.aliyun.core.annotation.NameInMap("OrgName")
210210
private String orgName;
211211

212+
@com.aliyun.core.annotation.NameInMap("OrgNamePath")
213+
private String orgNamePath;
214+
212215
private OrgList(Builder builder) {
213216
this.orgId = builder.orgId;
214217
this.orgName = builder.orgName;
218+
this.orgNamePath = builder.orgNamePath;
215219
}
216220

217221
public static Builder builder() {
@@ -236,16 +240,25 @@ public String getOrgName() {
236240
return this.orgName;
237241
}
238242

243+
/**
244+
* @return orgNamePath
245+
*/
246+
public String getOrgNamePath() {
247+
return this.orgNamePath;
248+
}
249+
239250
public static final class Builder {
240251
private String orgId;
241252
private String orgName;
253+
private String orgNamePath;
242254

243255
private Builder() {
244256
}
245257

246258
private Builder(OrgList model) {
247259
this.orgId = model.orgId;
248260
this.orgName = model.orgName;
261+
this.orgNamePath = model.orgNamePath;
249262
}
250263

251264
/**
@@ -264,6 +277,14 @@ public Builder orgName(String orgName) {
264277
return this;
265278
}
266279

280+
/**
281+
* OrgNamePath.
282+
*/
283+
public Builder orgNamePath(String orgNamePath) {
284+
this.orgNamePath = orgNamePath;
285+
return this;
286+
}
287+
267288
public OrgList build() {
268289
return new OrgList(this);
269290
}

0 commit comments

Comments
 (0)