@alicloud/adb20211201 1.3.1 → 1.3.3
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 +16 -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/dist/client.d.ts
CHANGED
|
@@ -5986,6 +5986,9 @@ export declare class DescribeDBClusterAttributeResponseBodyItemsDBCluster extend
|
|
|
5986
5986
|
resourceGroupId?: string;
|
|
5987
5987
|
storageResource?: string;
|
|
5988
5988
|
storageResourceTotal?: string;
|
|
5989
|
+
supportedFeatures?: {
|
|
5990
|
+
[key: string]: string;
|
|
5991
|
+
};
|
|
5989
5992
|
tags?: DescribeDBClusterAttributeResponseBodyItemsDBClusterTags;
|
|
5990
5993
|
userENIStatus?: boolean;
|
|
5991
5994
|
VPCId?: string;
|
|
@@ -7136,7 +7139,20 @@ export default class Client extends OpenApi {
|
|
|
7136
7139
|
getSparkTemplateFolderTree(request: GetSparkTemplateFolderTreeRequest): Promise<GetSparkTemplateFolderTreeResponse>;
|
|
7137
7140
|
getSparkTemplateFullTreeWithOptions(request: GetSparkTemplateFullTreeRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkTemplateFullTreeResponse>;
|
|
7138
7141
|
getSparkTemplateFullTree(request: GetSparkTemplateFullTreeRequest): Promise<GetSparkTemplateFullTreeResponse>;
|
|
7142
|
+
/**
|
|
7143
|
+
* @deprecated
|
|
7144
|
+
*
|
|
7145
|
+
* @param request GetTableRequest
|
|
7146
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7147
|
+
* @return GetTableResponse
|
|
7148
|
+
*/
|
|
7139
7149
|
getTableWithOptions(request: GetTableRequest, runtime: $Util.RuntimeOptions): Promise<GetTableResponse>;
|
|
7150
|
+
/**
|
|
7151
|
+
* @deprecated
|
|
7152
|
+
*
|
|
7153
|
+
* @param request GetTableRequest
|
|
7154
|
+
* @return GetTableResponse
|
|
7155
|
+
*/
|
|
7140
7156
|
getTable(request: GetTableRequest): Promise<GetTableResponse>;
|
|
7141
7157
|
getTableColumnsWithOptions(request: GetTableColumnsRequest, runtime: $Util.RuntimeOptions): Promise<GetTableColumnsResponse>;
|
|
7142
7158
|
getTableColumns(request: GetTableColumnsRequest): Promise<GetTableColumnsResponse>;
|
package/dist/client.js
CHANGED
|
@@ -8369,6 +8369,7 @@ class DescribeDBClusterAttributeResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
8369
8369
|
resourceGroupId: 'ResourceGroupId',
|
|
8370
8370
|
storageResource: 'StorageResource',
|
|
8371
8371
|
storageResourceTotal: 'StorageResourceTotal',
|
|
8372
|
+
supportedFeatures: 'SupportedFeatures',
|
|
8372
8373
|
tags: 'Tags',
|
|
8373
8374
|
userENIStatus: 'UserENIStatus',
|
|
8374
8375
|
VPCId: 'VPCId',
|
|
@@ -8404,6 +8405,7 @@ class DescribeDBClusterAttributeResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
8404
8405
|
resourceGroupId: 'string',
|
|
8405
8406
|
storageResource: 'string',
|
|
8406
8407
|
storageResourceTotal: 'string',
|
|
8408
|
+
supportedFeatures: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8407
8409
|
tags: DescribeDBClusterAttributeResponseBodyItemsDBClusterTags,
|
|
8408
8410
|
userENIStatus: 'boolean',
|
|
8409
8411
|
VPCId: 'string',
|
|
@@ -12674,6 +12676,14 @@ class Client extends openapi_client_1.default {
|
|
|
12674
12676
|
let runtime = new $Util.RuntimeOptions({});
|
|
12675
12677
|
return await this.getSparkTemplateFullTreeWithOptions(request, runtime);
|
|
12676
12678
|
}
|
|
12679
|
+
/**
|
|
12680
|
+
* @deprecated
|
|
12681
|
+
*
|
|
12682
|
+
* @param request GetTableRequest
|
|
12683
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
12684
|
+
* @return GetTableResponse
|
|
12685
|
+
*/
|
|
12686
|
+
// Deprecated
|
|
12677
12687
|
async getTableWithOptions(request, runtime) {
|
|
12678
12688
|
tea_util_1.default.validateModel(request);
|
|
12679
12689
|
let query = {};
|
|
@@ -12705,6 +12715,13 @@ class Client extends openapi_client_1.default {
|
|
|
12705
12715
|
});
|
|
12706
12716
|
return $tea.cast(await this.callApi(params, req, runtime), new GetTableResponse({}));
|
|
12707
12717
|
}
|
|
12718
|
+
/**
|
|
12719
|
+
* @deprecated
|
|
12720
|
+
*
|
|
12721
|
+
* @param request GetTableRequest
|
|
12722
|
+
* @return GetTableResponse
|
|
12723
|
+
*/
|
|
12724
|
+
// Deprecated
|
|
12708
12725
|
async getTable(request) {
|
|
12709
12726
|
let runtime = new $Util.RuntimeOptions({});
|
|
12710
12727
|
return await this.getTableWithOptions(request, runtime);
|