@alicloud/dms-enterprise20181101 1.37.0 → 1.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +4 -0
- package/dist/client.js +14 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +20 -0
package/dist/client.d.ts
CHANGED
|
@@ -17638,6 +17638,8 @@ export declare class ListDataLakeDatabaseRequest extends $tea.Model {
|
|
|
17638
17638
|
* false
|
|
17639
17639
|
*/
|
|
17640
17640
|
dataRegion?: string;
|
|
17641
|
+
maxResults?: number;
|
|
17642
|
+
nextToken?: string;
|
|
17641
17643
|
/**
|
|
17642
17644
|
* @example
|
|
17643
17645
|
* default
|
|
@@ -17673,6 +17675,8 @@ export declare class ListDataLakeDatabaseResponseBody extends $tea.Model {
|
|
|
17673
17675
|
* UnknownError
|
|
17674
17676
|
*/
|
|
17675
17677
|
errorMessage?: string;
|
|
17678
|
+
maxResults?: number;
|
|
17679
|
+
nextToken?: string;
|
|
17676
17680
|
/**
|
|
17677
17681
|
* @example
|
|
17678
17682
|
* 4E1D2B4D-3E53-4ABC-999D-1D2520B3471A
|
package/dist/client.js
CHANGED
|
@@ -10896,6 +10896,8 @@ class ListDataLakeDatabaseRequest extends $tea.Model {
|
|
|
10896
10896
|
return {
|
|
10897
10897
|
catalogName: 'CatalogName',
|
|
10898
10898
|
dataRegion: 'DataRegion',
|
|
10899
|
+
maxResults: 'MaxResults',
|
|
10900
|
+
nextToken: 'NextToken',
|
|
10899
10901
|
searchKey: 'SearchKey',
|
|
10900
10902
|
tid: 'Tid',
|
|
10901
10903
|
};
|
|
@@ -10904,6 +10906,8 @@ class ListDataLakeDatabaseRequest extends $tea.Model {
|
|
|
10904
10906
|
return {
|
|
10905
10907
|
catalogName: 'string',
|
|
10906
10908
|
dataRegion: 'string',
|
|
10909
|
+
maxResults: 'number',
|
|
10910
|
+
nextToken: 'string',
|
|
10907
10911
|
searchKey: 'string',
|
|
10908
10912
|
tid: 'number',
|
|
10909
10913
|
};
|
|
@@ -10919,6 +10923,8 @@ class ListDataLakeDatabaseResponseBody extends $tea.Model {
|
|
|
10919
10923
|
databaseList: 'DatabaseList',
|
|
10920
10924
|
errorCode: 'ErrorCode',
|
|
10921
10925
|
errorMessage: 'ErrorMessage',
|
|
10926
|
+
maxResults: 'MaxResults',
|
|
10927
|
+
nextToken: 'NextToken',
|
|
10922
10928
|
requestId: 'RequestId',
|
|
10923
10929
|
success: 'Success',
|
|
10924
10930
|
};
|
|
@@ -10928,6 +10934,8 @@ class ListDataLakeDatabaseResponseBody extends $tea.Model {
|
|
|
10928
10934
|
databaseList: ListDataLakeDatabaseResponseBodyDatabaseList,
|
|
10929
10935
|
errorCode: 'string',
|
|
10930
10936
|
errorMessage: 'string',
|
|
10937
|
+
maxResults: 'number',
|
|
10938
|
+
nextToken: 'string',
|
|
10931
10939
|
requestId: 'string',
|
|
10932
10940
|
success: 'boolean',
|
|
10933
10941
|
};
|
|
@@ -33479,6 +33487,12 @@ class Client extends openapi_client_1.default {
|
|
|
33479
33487
|
if (!tea_util_1.default.isUnset(request.dataRegion)) {
|
|
33480
33488
|
query["DataRegion"] = request.dataRegion;
|
|
33481
33489
|
}
|
|
33490
|
+
if (!tea_util_1.default.isUnset(request.maxResults)) {
|
|
33491
|
+
query["MaxResults"] = request.maxResults;
|
|
33492
|
+
}
|
|
33493
|
+
if (!tea_util_1.default.isUnset(request.nextToken)) {
|
|
33494
|
+
query["NextToken"] = request.nextToken;
|
|
33495
|
+
}
|
|
33482
33496
|
if (!tea_util_1.default.isUnset(request.searchKey)) {
|
|
33483
33497
|
query["SearchKey"] = request.searchKey;
|
|
33484
33498
|
}
|