|
| 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) |
0 commit comments