@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -4829,6 +4829,7 @@ export class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
4829
4829
|
interval?: string;
|
|
4830
4830
|
key?: string;
|
|
4831
4831
|
startTime?: string;
|
|
4832
|
+
type?: string;
|
|
4832
4833
|
static names(): { [key: string]: string } {
|
|
4833
4834
|
return {
|
|
4834
4835
|
DBClusterId: 'DBClusterId',
|
|
@@ -4836,6 +4837,7 @@ export class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
4836
4837
|
interval: 'Interval',
|
|
4837
4838
|
key: 'Key',
|
|
4838
4839
|
startTime: 'StartTime',
|
|
4840
|
+
type: 'Type',
|
|
4839
4841
|
};
|
|
4840
4842
|
}
|
|
4841
4843
|
|
|
@@ -4846,6 +4848,7 @@ export class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
4846
4848
|
interval: 'string',
|
|
4847
4849
|
key: 'string',
|
|
4848
4850
|
startTime: 'string',
|
|
4851
|
+
type: 'string',
|
|
4849
4852
|
};
|
|
4850
4853
|
}
|
|
4851
4854
|
|
|
@@ -14787,6 +14790,7 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14787
14790
|
engine?: string;
|
|
14788
14791
|
expireTime?: string;
|
|
14789
14792
|
expired?: string;
|
|
14793
|
+
hotStandbyCluster?: string;
|
|
14790
14794
|
lockMode?: string;
|
|
14791
14795
|
memorySize?: string;
|
|
14792
14796
|
payType?: string;
|
|
@@ -14823,6 +14827,7 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14823
14827
|
engine: 'Engine',
|
|
14824
14828
|
expireTime: 'ExpireTime',
|
|
14825
14829
|
expired: 'Expired',
|
|
14830
|
+
hotStandbyCluster: 'HotStandbyCluster',
|
|
14826
14831
|
lockMode: 'LockMode',
|
|
14827
14832
|
memorySize: 'MemorySize',
|
|
14828
14833
|
payType: 'PayType',
|
|
@@ -14862,6 +14867,7 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14862
14867
|
engine: 'string',
|
|
14863
14868
|
expireTime: 'string',
|
|
14864
14869
|
expired: 'string',
|
|
14870
|
+
hotStandbyCluster: 'string',
|
|
14865
14871
|
lockMode: 'string',
|
|
14866
14872
|
memorySize: 'string',
|
|
14867
14873
|
payType: 'string',
|
|
@@ -20547,6 +20553,10 @@ export default class Client extends OpenApi {
|
|
|
20547
20553
|
query["StartTime"] = request.startTime;
|
|
20548
20554
|
}
|
|
20549
20555
|
|
|
20556
|
+
if (!Util.isUnset(request.type)) {
|
|
20557
|
+
query["Type"] = request.type;
|
|
20558
|
+
}
|
|
20559
|
+
|
|
20550
20560
|
let req = new $OpenApi.OpenApiRequest({
|
|
20551
20561
|
query: OpenApiUtil.query(query),
|
|
20552
20562
|
});
|