Skip to content

Commit f5d4fde

Browse files
committed
Generated 2021-03-08 for eds-user.
1 parent 9049da2 commit f5d4fde

11 files changed

+376
-1
lines changed

aliyun-python-sdk-eds-user/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-07-02 Version: 1.0.2
2+
- Generated 2021-03-08 for `eds-user`.
3+
14
2025-04-27 Version: 1.0.1
25
- Generated 2021-03-08 for `eds-user`.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkeds_user.endpoint import endpoint_data
22+
23+
class CreateGroupRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'CreateGroup','eds-user')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_GroupName(self): # String
35+
return self.get_query_params().get('GroupName')
36+
37+
def set_GroupName(self, GroupName): # String
38+
self.add_query_param('GroupName', GroupName)
39+
def get_BizType(self): # String
40+
return self.get_query_params().get('BizType')
41+
42+
def set_BizType(self, BizType): # String
43+
self.add_query_param('BizType', BizType)
44+
def get_ParentGroupId(self): # String
45+
return self.get_query_params().get('ParentGroupId')
46+
47+
def set_ParentGroupId(self, ParentGroupId): # String
48+
self.add_query_param('ParentGroupId', ParentGroupId)
49+
def get_SolutionId(self): # String
50+
return self.get_query_params().get('SolutionId')
51+
52+
def set_SolutionId(self, SolutionId): # String
53+
self.add_query_param('SolutionId', SolutionId)
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkeds_user.endpoint import endpoint_data
22+
23+
class DescribeGroupUserRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'DescribeGroupUser','eds-user')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_GroupId(self): # String
35+
return self.get_query_params().get('GroupId')
36+
37+
def set_GroupId(self, GroupId): # String
38+
self.add_query_param('GroupId', GroupId)
39+
def get_BizType(self): # String
40+
return self.get_query_params().get('BizType')
41+
42+
def set_BizType(self, BizType): # String
43+
self.add_query_param('BizType', BizType)
44+
def get_SolutionId(self): # String
45+
return self.get_query_params().get('SolutionId')
46+
47+
def set_SolutionId(self, SolutionId): # String
48+
self.add_query_param('SolutionId', SolutionId)
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkeds_user.endpoint import endpoint_data
22+
23+
class DescribeGroupsRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'DescribeGroups','eds-user')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_GroupId(self): # String
35+
return self.get_query_params().get('GroupId')
36+
37+
def set_GroupId(self, GroupId): # String
38+
self.add_query_param('GroupId', GroupId)
39+
def get_GroupName(self): # String
40+
return self.get_query_params().get('GroupName')
41+
42+
def set_GroupName(self, GroupName): # String
43+
self.add_query_param('GroupName', GroupName)
44+
def get_BizType(self): # String
45+
return self.get_query_params().get('BizType')
46+
47+
def set_BizType(self, BizType): # String
48+
self.add_query_param('BizType', BizType)
49+
def get_SolutionId(self): # String
50+
return self.get_query_params().get('SolutionId')
51+
52+
def set_SolutionId(self, SolutionId): # String
53+
self.add_query_param('SolutionId', SolutionId)

aliyun-python-sdk-eds-user/aliyunsdkeds_user/request/v20210308/DescribeUsersRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,8 @@ def get_ShowExtras(self): # Map
9999

100100
def set_ShowExtras(self, ShowExtras): # Map
101101
self.add_body_params("ShowExtras", json.dumps(ShowExtras))
102+
def get_Status(self): # Integer
103+
return self.get_query_params().get('Status')
104+
105+
def set_Status(self, Status): # Integer
106+
self.add_query_param('Status', Status)
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkeds_user.endpoint import endpoint_data
22+
23+
class ModifyGroupRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'ModifyGroup','eds-user')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_GroupId(self): # String
35+
return self.get_query_params().get('GroupId')
36+
37+
def set_GroupId(self, GroupId): # String
38+
self.add_query_param('GroupId', GroupId)
39+
def get_NewGroupName(self): # String
40+
return self.get_query_params().get('NewGroupName')
41+
42+
def set_NewGroupName(self, NewGroupName): # String
43+
self.add_query_param('NewGroupName', NewGroupName)
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkeds_user.endpoint import endpoint_data
22+
23+
class MoveUserOrgRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'MoveUserOrg','eds-user')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_EndUserIdss(self): # RepeatList
35+
return self.get_body_params().get('EndUserIds')
36+
37+
def set_EndUserIdss(self, EndUserIds): # RepeatList
38+
for depth1 in range(len(EndUserIds)):
39+
self.add_body_params('EndUserIds.' + str(depth1 + 1), EndUserIds[depth1])
40+
def get_OrgId(self): # String
41+
return self.get_body_params().get('OrgId')
42+
43+
def set_OrgId(self, OrgId): # String
44+
self.add_body_params('OrgId', OrgId)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkeds_user.endpoint import endpoint_data
22+
23+
class RemoveGroupRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'RemoveGroup','eds-user')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_GroupId(self): # String
35+
return self.get_query_params().get('GroupId')
36+
37+
def set_GroupId(self, GroupId): # String
38+
self.add_query_param('GroupId', GroupId)
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkeds_user.endpoint import endpoint_data
22+
23+
class UserBatchJoinGroupRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'UserBatchJoinGroup','eds-user')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_EndUserIdss(self): # RepeatList
35+
return self.get_body_params().get('EndUserIds')
36+
37+
def set_EndUserIdss(self, EndUserIds): # RepeatList
38+
for depth1 in range(len(EndUserIds)):
39+
self.add_body_params('EndUserIds.' + str(depth1 + 1), EndUserIds[depth1])
40+
def get_GroupId(self): # String
41+
return self.get_body_params().get('GroupId')
42+
43+
def set_GroupId(self, GroupId): # String
44+
self.add_body_params('GroupId', GroupId)

0 commit comments

Comments
 (0)