Skip to content

Commit 784e374

Browse files
committed
Generated java-async 2021-03-08 for eds-user.
1 parent 97fb88a commit 784e374

File tree

6 files changed

+355
-1
lines changed

6 files changed

+355
-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-03-24 Version: 1.0.17
2+
- Generated java-async 2021-03-08 for eds-user.
3+
14
2025-01-02 Version: 1.0.16
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.16</version>
6+
<version>1.0.17</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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ public class DescribeUsersRequest extends Request {
3333
@com.aliyun.core.annotation.NameInMap("Filter")
3434
private String filter;
3535

36+
@com.aliyun.core.annotation.Query
37+
@com.aliyun.core.annotation.NameInMap("FilterWithAssignedResource")
38+
private java.util.Map<String, String> filterWithAssignedResource;
39+
3640
@com.aliyun.core.annotation.Body
3741
@com.aliyun.core.annotation.NameInMap("FilterWithAssignedResources")
3842
private java.util.Map<String, Boolean> filterWithAssignedResources;
@@ -72,6 +76,7 @@ private DescribeUsersRequest(Builder builder) {
7276
this.endUserIds = builder.endUserIds;
7377
this.excludeEndUserIds = builder.excludeEndUserIds;
7478
this.filter = builder.filter;
79+
this.filterWithAssignedResource = builder.filterWithAssignedResource;
7580
this.filterWithAssignedResources = builder.filterWithAssignedResources;
7681
this.groupId = builder.groupId;
7782
this.isQueryAllSubOrgs = builder.isQueryAllSubOrgs;
@@ -123,6 +128,13 @@ public String getFilter() {
123128
return this.filter;
124129
}
125130

131+
/**
132+
* @return filterWithAssignedResource
133+
*/
134+
public java.util.Map<String, String> getFilterWithAssignedResource() {
135+
return this.filterWithAssignedResource;
136+
}
137+
126138
/**
127139
* @return filterWithAssignedResources
128140
*/
@@ -184,6 +196,7 @@ public static final class Builder extends Request.Builder<DescribeUsersRequest,
184196
private java.util.List<String> endUserIds;
185197
private java.util.List<String> excludeEndUserIds;
186198
private String filter;
199+
private java.util.Map<String, String> filterWithAssignedResource;
187200
private java.util.Map<String, Boolean> filterWithAssignedResources;
188201
private String groupId;
189202
private Boolean isQueryAllSubOrgs;
@@ -203,6 +216,7 @@ private Builder(DescribeUsersRequest request) {
203216
this.endUserIds = request.endUserIds;
204217
this.excludeEndUserIds = request.excludeEndUserIds;
205218
this.filter = request.filter;
219+
this.filterWithAssignedResource = request.filterWithAssignedResource;
206220
this.filterWithAssignedResources = request.filterWithAssignedResources;
207221
this.groupId = request.groupId;
208222
this.isQueryAllSubOrgs = request.isQueryAllSubOrgs;
@@ -252,6 +266,16 @@ public Builder filter(String filter) {
252266
return this;
253267
}
254268

269+
/**
270+
* FilterWithAssignedResource.
271+
*/
272+
public Builder filterWithAssignedResource(java.util.Map<String, String> filterWithAssignedResource) {
273+
String filterWithAssignedResourceShrink = shrink(filterWithAssignedResource, "FilterWithAssignedResource", "json");
274+
this.putQueryParameter("FilterWithAssignedResource", filterWithAssignedResourceShrink);
275+
this.filterWithAssignedResource = filterWithAssignedResource;
276+
return this;
277+
}
278+
255279
/**
256280
* FilterWithAssignedResources.
257281
*/

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

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,73 @@ public Orgs build() {
294294

295295
}
296296

297+
}
298+
/**
299+
*
300+
* {@link DescribeUsersResponseBody} extends {@link TeaModel}
301+
*
302+
* <p>DescribeUsersResponseBody</p>
303+
*/
304+
public static class Properties extends TeaModel {
305+
@com.aliyun.core.annotation.NameInMap("Key")
306+
private String key;
307+
308+
@com.aliyun.core.annotation.NameInMap("Value")
309+
private String value;
310+
311+
private Properties(Builder builder) {
312+
this.key = builder.key;
313+
this.value = builder.value;
314+
}
315+
316+
public static Builder builder() {
317+
return new Builder();
318+
}
319+
320+
public static Properties create() {
321+
return builder().build();
322+
}
323+
324+
/**
325+
* @return key
326+
*/
327+
public String getKey() {
328+
return this.key;
329+
}
330+
331+
/**
332+
* @return value
333+
*/
334+
public String getValue() {
335+
return this.value;
336+
}
337+
338+
public static final class Builder {
339+
private String key;
340+
private String value;
341+
342+
/**
343+
* Key.
344+
*/
345+
public Builder key(String key) {
346+
this.key = key;
347+
return this;
348+
}
349+
350+
/**
351+
* Value.
352+
*/
353+
public Builder value(String value) {
354+
this.value = value;
355+
return this;
356+
}
357+
358+
public Properties build() {
359+
return new Properties(this);
360+
}
361+
362+
}
363+
297364
}
298365
/**
299366
*
@@ -314,6 +381,9 @@ public static class Users extends TeaModel {
314381
@com.aliyun.core.annotation.NameInMap("EndUserId")
315382
private String endUserId;
316383

384+
@com.aliyun.core.annotation.NameInMap("ExternalName")
385+
private String externalName;
386+
317387
@com.aliyun.core.annotation.NameInMap("Extras")
318388
private Extras extras;
319389

@@ -344,6 +414,9 @@ public static class Users extends TeaModel {
344414
@com.aliyun.core.annotation.NameInMap("Phone")
345415
private String phone;
346416

417+
@com.aliyun.core.annotation.NameInMap("Properties")
418+
private java.util.List<Properties> properties;
419+
347420
@com.aliyun.core.annotation.NameInMap("RealNickName")
348421
private String realNickName;
349422

@@ -361,6 +434,7 @@ private Users(Builder builder) {
361434
this.avatar = builder.avatar;
362435
this.email = builder.email;
363436
this.endUserId = builder.endUserId;
437+
this.externalName = builder.externalName;
364438
this.extras = builder.extras;
365439
this.groups = builder.groups;
366440
this.id = builder.id;
@@ -371,6 +445,7 @@ private Users(Builder builder) {
371445
this.orgs = builder.orgs;
372446
this.ownerType = builder.ownerType;
373447
this.phone = builder.phone;
448+
this.properties = builder.properties;
374449
this.realNickName = builder.realNickName;
375450
this.remark = builder.remark;
376451
this.status = builder.status;
@@ -413,6 +488,13 @@ public String getEndUserId() {
413488
return this.endUserId;
414489
}
415490

491+
/**
492+
* @return externalName
493+
*/
494+
public String getExternalName() {
495+
return this.externalName;
496+
}
497+
416498
/**
417499
* @return extras
418500
*/
@@ -483,6 +565,13 @@ public String getPhone() {
483565
return this.phone;
484566
}
485567

568+
/**
569+
* @return properties
570+
*/
571+
public java.util.List<Properties> getProperties() {
572+
return this.properties;
573+
}
574+
486575
/**
487576
* @return realNickName
488577
*/
@@ -516,6 +605,7 @@ public static final class Builder {
516605
private String avatar;
517606
private String email;
518607
private String endUserId;
608+
private String externalName;
519609
private Extras extras;
520610
private java.util.List<Groups> groups;
521611
private Long id;
@@ -526,6 +616,7 @@ public static final class Builder {
526616
private java.util.List<Orgs> orgs;
527617
private String ownerType;
528618
private String phone;
619+
private java.util.List<Properties> properties;
529620
private String realNickName;
530621
private String remark;
531622
private Long status;
@@ -575,6 +666,14 @@ public Builder endUserId(String endUserId) {
575666
return this;
576667
}
577668

669+
/**
670+
* ExternalName.
671+
*/
672+
public Builder externalName(String externalName) {
673+
this.externalName = externalName;
674+
return this;
675+
}
676+
578677
/**
579678
* Extras.
580679
*/
@@ -703,6 +802,14 @@ public Builder phone(String phone) {
703802
return this;
704803
}
705804

805+
/**
806+
* Properties.
807+
*/
808+
public Builder properties(java.util.List<Properties> properties) {
809+
this.properties = properties;
810+
return this;
811+
}
812+
706813
/**
707814
* RealNickName.
708815
*/

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

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ public class FilterUsersRequest extends Request {
3333
@com.aliyun.core.annotation.NameInMap("IncludeDesktopGroupCount")
3434
private Boolean includeDesktopGroupCount;
3535

36+
@com.aliyun.core.annotation.Query
37+
@com.aliyun.core.annotation.NameInMap("IncludeOrgInfo")
38+
private Boolean includeOrgInfo;
39+
40+
@com.aliyun.core.annotation.Query
41+
@com.aliyun.core.annotation.NameInMap("IncludeSupportIdps")
42+
private Boolean includeSupportIdps;
43+
3644
@com.aliyun.core.annotation.Query
3745
@com.aliyun.core.annotation.NameInMap("IsQueryAllSubOrgs")
3846
private Boolean isQueryAllSubOrgs;
@@ -76,6 +84,8 @@ private FilterUsersRequest(Builder builder) {
7684
this.filter = builder.filter;
7785
this.includeDesktopCount = builder.includeDesktopCount;
7886
this.includeDesktopGroupCount = builder.includeDesktopGroupCount;
87+
this.includeOrgInfo = builder.includeOrgInfo;
88+
this.includeSupportIdps = builder.includeSupportIdps;
7989
this.isQueryAllSubOrgs = builder.isQueryAllSubOrgs;
8090
this.maxResults = builder.maxResults;
8191
this.nextToken = builder.nextToken;
@@ -128,6 +138,20 @@ public Boolean getIncludeDesktopGroupCount() {
128138
return this.includeDesktopGroupCount;
129139
}
130140

141+
/**
142+
* @return includeOrgInfo
143+
*/
144+
public Boolean getIncludeOrgInfo() {
145+
return this.includeOrgInfo;
146+
}
147+
148+
/**
149+
* @return includeSupportIdps
150+
*/
151+
public Boolean getIncludeSupportIdps() {
152+
return this.includeSupportIdps;
153+
}
154+
131155
/**
132156
* @return isQueryAllSubOrgs
133157
*/
@@ -196,6 +220,8 @@ public static final class Builder extends Request.Builder<FilterUsersRequest, Bu
196220
private String filter;
197221
private Boolean includeDesktopCount;
198222
private Boolean includeDesktopGroupCount;
223+
private Boolean includeOrgInfo;
224+
private Boolean includeSupportIdps;
199225
private Boolean isQueryAllSubOrgs;
200226
private Long maxResults;
201227
private String nextToken;
@@ -216,6 +242,8 @@ private Builder(FilterUsersRequest request) {
216242
this.filter = request.filter;
217243
this.includeDesktopCount = request.includeDesktopCount;
218244
this.includeDesktopGroupCount = request.includeDesktopGroupCount;
245+
this.includeOrgInfo = request.includeOrgInfo;
246+
this.includeSupportIdps = request.includeSupportIdps;
219247
this.isQueryAllSubOrgs = request.isQueryAllSubOrgs;
220248
this.maxResults = request.maxResults;
221249
this.nextToken = request.nextToken;
@@ -304,6 +332,24 @@ public Builder includeDesktopGroupCount(Boolean includeDesktopGroupCount) {
304332
return this;
305333
}
306334

335+
/**
336+
* IncludeOrgInfo.
337+
*/
338+
public Builder includeOrgInfo(Boolean includeOrgInfo) {
339+
this.putQueryParameter("IncludeOrgInfo", includeOrgInfo);
340+
this.includeOrgInfo = includeOrgInfo;
341+
return this;
342+
}
343+
344+
/**
345+
* IncludeSupportIdps.
346+
*/
347+
public Builder includeSupportIdps(Boolean includeSupportIdps) {
348+
this.putQueryParameter("IncludeSupportIdps", includeSupportIdps);
349+
this.includeSupportIdps = includeSupportIdps;
350+
return this;
351+
}
352+
307353
/**
308354
* IsQueryAllSubOrgs.
309355
*/

0 commit comments

Comments
 (0)