Skip to content

Commit 75d305c

Browse files
committed
Generated 2021-03-08 for eds-user.
1 parent ed890c6 commit 75d305c

6 files changed

Lines changed: 71 additions & 1 deletion

File tree

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+
2026-05-03 Version: 1.0.4
2+
- Generated 2021-03-08 for `eds-user`.
3+
14
2026-03-16 Version: 1.0.3
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.3'
1+
__version__ = '1.0.4'

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ def get_BusinessChannel(self): # String
4141

4242
def set_BusinessChannel(self, BusinessChannel): # String
4343
self.add_query_param('BusinessChannel', BusinessChannel)
44+
def get_EnableAliyunResourceGroup(self): # Boolean
45+
return self.get_query_params().get('EnableAliyunResourceGroup')
46+
47+
def set_EnableAliyunResourceGroup(self, EnableAliyunResourceGroup): # Boolean
48+
self.add_query_param('EnableAliyunResourceGroup', EnableAliyunResourceGroup)
4449
def get_Platform(self): # String
4550
return self.get_query_params().get('Platform')
4651

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ def get_BusinessChannel(self): # String
3636

3737
def set_BusinessChannel(self, BusinessChannel): # String
3838
self.add_query_param('BusinessChannel', BusinessChannel)
39+
def get_IncludeOrgIds(self): # Array
40+
return self.get_query_params().get('IncludeOrgIds')
41+
42+
def set_IncludeOrgIds(self, IncludeOrgIds): # Array
43+
for index1, value1 in enumerate(IncludeOrgIds):
44+
self.add_query_param('IncludeOrgIds.' + str(index1 + 1), value1)
3945
def get_OrgName(self): # String
4046
return self.get_query_params().get('OrgName')
4147

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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 DescribeUserRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'eds-user', '2021-03-08', 'DescribeUser','eds-user')
27+
self.set_protocol_type('https')
28+
self.set_method('POST')
29+
30+
if hasattr(self, "endpoint_map"):
31+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
32+
if hasattr(self, "endpoint_regional"):
33+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
34+
35+
def get_BusinessChannel(self): # String
36+
return self.get_query_params().get('BusinessChannel')
37+
38+
def set_BusinessChannel(self, BusinessChannel): # String
39+
self.add_query_param('BusinessChannel', BusinessChannel)
40+
def get_RequireExtraAttributes(self): # Array
41+
return self.get_query_params().get('RequireExtraAttributes')
42+
43+
def set_RequireExtraAttributes(self, RequireExtraAttributes): # Array
44+
for index1, value1 in enumerate(RequireExtraAttributes):
45+
self.add_query_param('RequireExtraAttributes.' + str(index1 + 1), value1)
46+
def get_EndUserId(self): # String
47+
return self.get_query_params().get('EndUserId')
48+
49+
def set_EndUserId(self, EndUserId): # String
50+
self.add_query_param('EndUserId', EndUserId)

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,12 @@ def get_MaxResults(self): # Long
127127

128128
def set_MaxResults(self, MaxResults): # Long
129129
self.add_query_param('MaxResults', MaxResults)
130+
def get_ShowExtras(self): # Map
131+
return self.get_query_params().get('ShowExtras')
132+
133+
def set_ShowExtras(self, ShowExtras): # Map
134+
for key1, value1 in ShowExtras.items():
135+
self.add_query_param('ShowExtras.#' + str(len(key1)) + '#' + key1, value1)
130136
def get_Status(self): # Integer
131137
return self.get_query_params().get('Status')
132138

0 commit comments

Comments
 (0)