Skip to content

Commit

Permalink
AllotDatasetAccelerationTask API add error code.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Feb 27, 2024
1 parent 4cbae3c commit cd59cb6
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 1 deletion.
4 changes: 4 additions & 0 deletions aliyun-python-sdk-quickbi-public/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-02-27 Version: 2.1.4
- AllotDatasetAccelerationTask API add error code.
- QueryUserInfoByAccount, QueryUserInfoByUserId, AddUser, UpdateUser, and QueryUserList APIs add query or response parameters.

2023-06-20 Version: 2.1.3
- Add QueryCubePerformance, QueryComponentPerformance, QueryCubeOptimization, and QueryReportPerformance APIs.
- Update error code description.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.3'
__version__ = '2.1.4'
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ def get_UserType(self): # Integer

def set_UserType(self, UserType): # Integer
self.add_query_param('UserType', UserType)
def get_RoleIds(self): # String
return self.get_body_params().get('RoleIds')

def set_RoleIds(self, RoleIds): # String
self.add_body_params('RoleIds', RoleIds)
def get_AccountName(self): # String
return self.get_query_params().get('AccountName')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ def __init__(self):
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'QueryUserInfoByAccount','2.2.0')
self.set_method('POST')

def get_ParentAccountName(self): # String
return self.get_query_params().get('ParentAccountName')

def set_ParentAccountName(self, ParentAccountName): # String
self.add_query_param('ParentAccountName', ParentAccountName)
def get_Account(self): # String
return self.get_query_params().get('Account')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ def get_UserId(self): # String

def set_UserId(self, UserId): # String
self.add_query_param('UserId', UserId)
def get_RoleIds(self): # String
return self.get_query_params().get('RoleIds')

def set_RoleIds(self, RoleIds): # String
self.add_query_param('RoleIds', RoleIds)
def get_NickName(self): # String
return self.get_query_params().get('NickName')

Expand Down

0 comments on commit cd59cb6

Please sign in to comment.