Skip to content

Commit

Permalink
Supported Pageable of ListDataLakeDatabase API.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 12, 2024
1 parent 6b43157 commit f44a1a3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-dms-enterprise/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-12 Version: 1.53.12
- Supported Pageable of ListDataLakeDatabase API.

2024-11-27 Version: 1.53.11
- Support ListDataLakeCatalog, ListDataLakeDatabase, ListDataLakeTablebaseInfo, GetDataLakeCatalog, GetDataLakeDatabase, GetDataLakeTable API.

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.53.11'
__version__ = '1.53.12'
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ def get_Tid(self): # Long

def set_Tid(self, Tid): # Long
self.add_query_param('Tid', Tid)
def get_NextToken(self): # String
return self.get_query_params().get('NextToken')

def set_NextToken(self, NextToken): # String
self.add_query_param('NextToken', NextToken)
def get_CatalogName(self): # String
return self.get_query_params().get('CatalogName')

Expand All @@ -52,3 +57,8 @@ def get_DataRegion(self): # String

def set_DataRegion(self, DataRegion): # String
self.add_query_param('DataRegion', DataRegion)
def get_MaxResults(self): # Integer
return self.get_query_params().get('MaxResults')

def set_MaxResults(self, MaxResults): # Integer
self.add_query_param('MaxResults', MaxResults)

0 comments on commit f44a1a3

Please sign in to comment.