Skip to content

Commit 416cc2d

Browse files
committed
QueryAuditLog API add request parameters.
1 parent f5d4fde commit 416cc2d

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

aliyun-python-sdk-quickbi-public/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-07-03 Version: 2.1.16
2+
- QueryAuditLog API add request parameters.
3+
14
2025-05-28 Version: 2.1.15
25
- Add api request parameters and error code.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.15'
1+
__version__ = '2.1.16'

aliyun-python-sdk-quickbi-public/aliyunsdkquickbi_public/request/v20220101/QueryAuditLogRequest.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ def __init__(self):
2525
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'QueryAuditLog','2.2.0')
2626
self.set_method('POST')
2727

28+
def get_AccessSourceFlag(self): # String
29+
return self.get_query_params().get('AccessSourceFlag')
30+
31+
def set_AccessSourceFlag(self, AccessSourceFlag): # String
32+
self.add_query_param('AccessSourceFlag', AccessSourceFlag)
2833
def get_StartDate(self): # String
2934
return self.get_query_params().get('StartDate')
3035

@@ -60,3 +65,8 @@ def get_WorkspaceId(self): # String
6065

6166
def set_WorkspaceId(self, WorkspaceId): # String
6267
self.add_query_param('WorkspaceId', WorkspaceId)
68+
def get_UserAccessDevice(self): # String
69+
return self.get_query_params().get('UserAccessDevice')
70+
71+
def set_UserAccessDevice(self, UserAccessDevice): # String
72+
self.add_query_param('UserAccessDevice', UserAccessDevice)

0 commit comments

Comments
 (0)