@alicloud/polardb20170801 5.1.5 → 5.1.7
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 +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/dist/client.d.ts
CHANGED
|
@@ -2584,6 +2584,7 @@ export declare class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
2584
2584
|
interval?: string;
|
|
2585
2585
|
key?: string;
|
|
2586
2586
|
startTime?: string;
|
|
2587
|
+
type?: string;
|
|
2587
2588
|
static names(): {
|
|
2588
2589
|
[key: string]: string;
|
|
2589
2590
|
};
|
|
@@ -7937,6 +7938,7 @@ export declare class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.M
|
|
|
7937
7938
|
engine?: string;
|
|
7938
7939
|
expireTime?: string;
|
|
7939
7940
|
expired?: string;
|
|
7941
|
+
hotStandbyCluster?: string;
|
|
7940
7942
|
lockMode?: string;
|
|
7941
7943
|
memorySize?: string;
|
|
7942
7944
|
payType?: string;
|
package/dist/client.js
CHANGED
|
@@ -3774,6 +3774,7 @@ class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
3774
3774
|
interval: 'Interval',
|
|
3775
3775
|
key: 'Key',
|
|
3776
3776
|
startTime: 'StartTime',
|
|
3777
|
+
type: 'Type',
|
|
3777
3778
|
};
|
|
3778
3779
|
}
|
|
3779
3780
|
static types() {
|
|
@@ -3783,6 +3784,7 @@ class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
3783
3784
|
interval: 'string',
|
|
3784
3785
|
key: 'string',
|
|
3785
3786
|
startTime: 'string',
|
|
3787
|
+
type: 'string',
|
|
3786
3788
|
};
|
|
3787
3789
|
}
|
|
3788
3790
|
constructor(map) {
|
|
@@ -11500,6 +11502,7 @@ class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
11500
11502
|
engine: 'Engine',
|
|
11501
11503
|
expireTime: 'ExpireTime',
|
|
11502
11504
|
expired: 'Expired',
|
|
11505
|
+
hotStandbyCluster: 'HotStandbyCluster',
|
|
11503
11506
|
lockMode: 'LockMode',
|
|
11504
11507
|
memorySize: 'MemorySize',
|
|
11505
11508
|
payType: 'PayType',
|
|
@@ -11538,6 +11541,7 @@ class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
11538
11541
|
engine: 'string',
|
|
11539
11542
|
expireTime: 'string',
|
|
11540
11543
|
expired: 'string',
|
|
11544
|
+
hotStandbyCluster: 'string',
|
|
11541
11545
|
lockMode: 'string',
|
|
11542
11546
|
memorySize: 'string',
|
|
11543
11547
|
payType: 'string',
|
|
@@ -16279,6 +16283,9 @@ class Client extends openapi_client_1.default {
|
|
|
16279
16283
|
if (!tea_util_1.default.isUnset(request.startTime)) {
|
|
16280
16284
|
query["StartTime"] = request.startTime;
|
|
16281
16285
|
}
|
|
16286
|
+
if (!tea_util_1.default.isUnset(request.type)) {
|
|
16287
|
+
query["Type"] = request.type;
|
|
16288
|
+
}
|
|
16282
16289
|
let req = new $OpenApi.OpenApiRequest({
|
|
16283
16290
|
query: openapi_util_1.default.query(query),
|
|
16284
16291
|
});
|