@alicloud/polardb20170801 5.0.3 → 5.0.5
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 +6 -13
- package/dist/client.js +1640 -1621
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +26 -13
package/dist/client.d.ts
CHANGED
|
@@ -3050,6 +3050,7 @@ export declare class DescribeDBNodePerformanceRequest extends $tea.Model {
|
|
|
3050
3050
|
interval?: string;
|
|
3051
3051
|
key?: string;
|
|
3052
3052
|
startTime?: string;
|
|
3053
|
+
type?: string;
|
|
3053
3054
|
static names(): {
|
|
3054
3055
|
[key: string]: string;
|
|
3055
3056
|
};
|
|
@@ -3150,6 +3151,7 @@ export declare class DescribeDBProxyPerformanceRequest extends $tea.Model {
|
|
|
3150
3151
|
interval?: string;
|
|
3151
3152
|
key?: string;
|
|
3152
3153
|
startTime?: string;
|
|
3154
|
+
type?: string;
|
|
3153
3155
|
static names(): {
|
|
3154
3156
|
[key: string]: string;
|
|
3155
3157
|
};
|
|
@@ -7841,6 +7843,7 @@ export declare class DescribeDBClustersResponseBodyItemsDBClusterTags extends $t
|
|
|
7841
7843
|
export declare class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
7842
7844
|
aiType?: string;
|
|
7843
7845
|
category?: string;
|
|
7846
|
+
cpuCores?: string;
|
|
7844
7847
|
createTime?: string;
|
|
7845
7848
|
DBClusterDescription?: string;
|
|
7846
7849
|
DBClusterId?: string;
|
|
@@ -7856,14 +7859,17 @@ export declare class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.M
|
|
|
7856
7859
|
expireTime?: string;
|
|
7857
7860
|
expired?: string;
|
|
7858
7861
|
lockMode?: string;
|
|
7862
|
+
memorySize?: string;
|
|
7859
7863
|
payType?: string;
|
|
7860
7864
|
regionId?: string;
|
|
7865
|
+
remoteMemorySize?: string;
|
|
7861
7866
|
resourceGroupId?: string;
|
|
7862
7867
|
serverlessType?: string;
|
|
7863
7868
|
storagePayType?: string;
|
|
7864
7869
|
storageSpace?: number;
|
|
7865
7870
|
storageUsed?: number;
|
|
7866
7871
|
strictConsistency?: string;
|
|
7872
|
+
subCategory?: string;
|
|
7867
7873
|
tags?: DescribeDBClustersResponseBodyItemsDBClusterTags;
|
|
7868
7874
|
vpcId?: string;
|
|
7869
7875
|
vswitchId?: string;
|
|
@@ -9188,20 +9194,7 @@ export default class Client extends OpenApi {
|
|
|
9188
9194
|
describeDBClusterServerlessConf(request: DescribeDBClusterServerlessConfRequest): Promise<DescribeDBClusterServerlessConfResponse>;
|
|
9189
9195
|
describeDBClusterTDEWithOptions(request: DescribeDBClusterTDERequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterTDEResponse>;
|
|
9190
9196
|
describeDBClusterTDE(request: DescribeDBClusterTDERequest): Promise<DescribeDBClusterTDEResponse>;
|
|
9191
|
-
/**
|
|
9192
|
-
* The release note of the kernel version.
|
|
9193
|
-
*
|
|
9194
|
-
* @param request DescribeDBClusterVersionRequest
|
|
9195
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
9196
|
-
* @return DescribeDBClusterVersionResponse
|
|
9197
|
-
*/
|
|
9198
9197
|
describeDBClusterVersionWithOptions(request: DescribeDBClusterVersionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterVersionResponse>;
|
|
9199
|
-
/**
|
|
9200
|
-
* The release note of the kernel version.
|
|
9201
|
-
*
|
|
9202
|
-
* @param request DescribeDBClusterVersionRequest
|
|
9203
|
-
* @return DescribeDBClusterVersionResponse
|
|
9204
|
-
*/
|
|
9205
9198
|
describeDBClusterVersion(request: DescribeDBClusterVersionRequest): Promise<DescribeDBClusterVersionResponse>;
|
|
9206
9199
|
describeDBClustersWithOptions(request: DescribeDBClustersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClustersResponse>;
|
|
9207
9200
|
describeDBClusters(request: DescribeDBClustersRequest): Promise<DescribeDBClustersResponse>;
|