@alicloud/adb20211201 1.3.2 → 1.3.4
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 +14 -0
- package/dist/client.js +17 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +18 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -5636,15 +5636,18 @@ export class DescribeTablesResponse extends $tea.Model {
|
|
|
5636
5636
|
|
|
5637
5637
|
export class DescribeUserQuotaRequest extends $tea.Model {
|
|
5638
5638
|
DBClusterId?: string;
|
|
5639
|
+
regionId?: string;
|
|
5639
5640
|
static names(): { [key: string]: string } {
|
|
5640
5641
|
return {
|
|
5641
5642
|
DBClusterId: 'DBClusterId',
|
|
5643
|
+
regionId: 'RegionId',
|
|
5642
5644
|
};
|
|
5643
5645
|
}
|
|
5644
5646
|
|
|
5645
5647
|
static types(): { [key: string]: any } {
|
|
5646
5648
|
return {
|
|
5647
5649
|
DBClusterId: 'string',
|
|
5650
|
+
regionId: 'string',
|
|
5648
5651
|
};
|
|
5649
5652
|
}
|
|
5650
5653
|
|
|
@@ -15800,6 +15803,14 @@ export default class Client extends OpenApi {
|
|
|
15800
15803
|
return await this.getSparkTemplateFullTreeWithOptions(request, runtime);
|
|
15801
15804
|
}
|
|
15802
15805
|
|
|
15806
|
+
/**
|
|
15807
|
+
* @deprecated
|
|
15808
|
+
*
|
|
15809
|
+
* @param request GetTableRequest
|
|
15810
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15811
|
+
* @return GetTableResponse
|
|
15812
|
+
*/
|
|
15813
|
+
// Deprecated
|
|
15803
15814
|
async getTableWithOptions(request: GetTableRequest, runtime: $Util.RuntimeOptions): Promise<GetTableResponse> {
|
|
15804
15815
|
Util.validateModel(request);
|
|
15805
15816
|
let query = { };
|
|
@@ -15836,6 +15847,13 @@ export default class Client extends OpenApi {
|
|
|
15836
15847
|
return $tea.cast<GetTableResponse>(await this.callApi(params, req, runtime), new GetTableResponse({}));
|
|
15837
15848
|
}
|
|
15838
15849
|
|
|
15850
|
+
/**
|
|
15851
|
+
* @deprecated
|
|
15852
|
+
*
|
|
15853
|
+
* @param request GetTableRequest
|
|
15854
|
+
* @return GetTableResponse
|
|
15855
|
+
*/
|
|
15856
|
+
// Deprecated
|
|
15839
15857
|
async getTable(request: GetTableRequest): Promise<GetTableResponse> {
|
|
15840
15858
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15841
15859
|
return await this.getTableWithOptions(request, runtime);
|