@alicloud/polardb20170801 5.1.4 → 5.1.6
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 +1 -0
- package/dist/client.js +8 -5
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -5
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
|
|
|
@@ -16696,16 +16699,16 @@ export default class Client extends OpenApi {
|
|
|
16696
16699
|
this._endpointMap = {
|
|
16697
16700
|
'cn-qingdao': "polardb.aliyuncs.com",
|
|
16698
16701
|
'cn-beijing': "polardb.aliyuncs.com",
|
|
16702
|
+
'cn-wulanchabu': "polardb.aliyuncs.com",
|
|
16699
16703
|
'cn-hangzhou': "polardb.aliyuncs.com",
|
|
16700
16704
|
'cn-shanghai': "polardb.aliyuncs.com",
|
|
16701
16705
|
'cn-shenzhen': "polardb.aliyuncs.com",
|
|
16706
|
+
'cn-guangzhou': "polardb.aliyuncs.com",
|
|
16702
16707
|
'cn-hongkong': "polardb.aliyuncs.com",
|
|
16703
|
-
'ap-southeast-1': "polardb.aliyuncs.com",
|
|
16704
|
-
'us-west-1': "polardb.aliyuncs.com",
|
|
16705
|
-
'us-east-1': "polardb.aliyuncs.com",
|
|
16706
16708
|
'cn-hangzhou-finance': "polardb.aliyuncs.com",
|
|
16707
16709
|
'cn-shanghai-finance-1': "polardb.aliyuncs.com",
|
|
16708
16710
|
'cn-shenzhen-finance-1': "polardb.aliyuncs.com",
|
|
16711
|
+
'cn-north-2-gov-1': "polardb.aliyuncs.com",
|
|
16709
16712
|
'ap-northeast-2-pop': "polardb.aliyuncs.com",
|
|
16710
16713
|
'cn-beijing-finance-1': "polardb.aliyuncs.com",
|
|
16711
16714
|
'cn-beijing-finance-pop': "polardb.aliyuncs.com",
|
|
@@ -16722,7 +16725,6 @@ export default class Client extends OpenApi {
|
|
|
16722
16725
|
'cn-hangzhou-test-306': "polardb.aliyuncs.com",
|
|
16723
16726
|
'cn-hongkong-finance-pop': "polardb.aliyuncs.com",
|
|
16724
16727
|
'cn-huhehaote-nebula-1': "polardb.aliyuncs.com",
|
|
16725
|
-
'cn-north-2-gov-1': "polardb.aliyuncs.com",
|
|
16726
16728
|
'cn-qingdao-nebula': "polardb.aliyuncs.com",
|
|
16727
16729
|
'cn-shanghai-et15-b01': "polardb.aliyuncs.com",
|
|
16728
16730
|
'cn-shanghai-et2-b01': "polardb.aliyuncs.com",
|
|
@@ -16732,7 +16734,6 @@ export default class Client extends OpenApi {
|
|
|
16732
16734
|
'cn-shenzhen-st4-d01': "polardb.aliyuncs.com",
|
|
16733
16735
|
'cn-shenzhen-su18-b01': "polardb.aliyuncs.com",
|
|
16734
16736
|
'cn-wuhan': "polardb.aliyuncs.com",
|
|
16735
|
-
'cn-wulanchabu': "polardb.aliyuncs.com",
|
|
16736
16737
|
'cn-yushanfang': "polardb.aliyuncs.com",
|
|
16737
16738
|
'cn-zhangbei': "polardb.aliyuncs.com",
|
|
16738
16739
|
'cn-zhangbei-na61-b01': "polardb.aliyuncs.com",
|
|
@@ -20549,6 +20550,10 @@ export default class Client extends OpenApi {
|
|
|
20549
20550
|
query["StartTime"] = request.startTime;
|
|
20550
20551
|
}
|
|
20551
20552
|
|
|
20553
|
+
if (!Util.isUnset(request.type)) {
|
|
20554
|
+
query["Type"] = request.type;
|
|
20555
|
+
}
|
|
20556
|
+
|
|
20552
20557
|
let req = new $OpenApi.OpenApiRequest({
|
|
20553
20558
|
query: OpenApiUtil.query(query),
|
|
20554
20559
|
});
|