@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/dist/client.d.ts
CHANGED
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) {
|
|
@@ -12969,16 +12971,16 @@ class Client extends openapi_client_1.default {
|
|
|
12969
12971
|
this._endpointMap = {
|
|
12970
12972
|
'cn-qingdao': "polardb.aliyuncs.com",
|
|
12971
12973
|
'cn-beijing': "polardb.aliyuncs.com",
|
|
12974
|
+
'cn-wulanchabu': "polardb.aliyuncs.com",
|
|
12972
12975
|
'cn-hangzhou': "polardb.aliyuncs.com",
|
|
12973
12976
|
'cn-shanghai': "polardb.aliyuncs.com",
|
|
12974
12977
|
'cn-shenzhen': "polardb.aliyuncs.com",
|
|
12978
|
+
'cn-guangzhou': "polardb.aliyuncs.com",
|
|
12975
12979
|
'cn-hongkong': "polardb.aliyuncs.com",
|
|
12976
|
-
'ap-southeast-1': "polardb.aliyuncs.com",
|
|
12977
|
-
'us-west-1': "polardb.aliyuncs.com",
|
|
12978
|
-
'us-east-1': "polardb.aliyuncs.com",
|
|
12979
12980
|
'cn-hangzhou-finance': "polardb.aliyuncs.com",
|
|
12980
12981
|
'cn-shanghai-finance-1': "polardb.aliyuncs.com",
|
|
12981
12982
|
'cn-shenzhen-finance-1': "polardb.aliyuncs.com",
|
|
12983
|
+
'cn-north-2-gov-1': "polardb.aliyuncs.com",
|
|
12982
12984
|
'ap-northeast-2-pop': "polardb.aliyuncs.com",
|
|
12983
12985
|
'cn-beijing-finance-1': "polardb.aliyuncs.com",
|
|
12984
12986
|
'cn-beijing-finance-pop': "polardb.aliyuncs.com",
|
|
@@ -12995,7 +12997,6 @@ class Client extends openapi_client_1.default {
|
|
|
12995
12997
|
'cn-hangzhou-test-306': "polardb.aliyuncs.com",
|
|
12996
12998
|
'cn-hongkong-finance-pop': "polardb.aliyuncs.com",
|
|
12997
12999
|
'cn-huhehaote-nebula-1': "polardb.aliyuncs.com",
|
|
12998
|
-
'cn-north-2-gov-1': "polardb.aliyuncs.com",
|
|
12999
13000
|
'cn-qingdao-nebula': "polardb.aliyuncs.com",
|
|
13000
13001
|
'cn-shanghai-et15-b01': "polardb.aliyuncs.com",
|
|
13001
13002
|
'cn-shanghai-et2-b01': "polardb.aliyuncs.com",
|
|
@@ -13005,7 +13006,6 @@ class Client extends openapi_client_1.default {
|
|
|
13005
13006
|
'cn-shenzhen-st4-d01': "polardb.aliyuncs.com",
|
|
13006
13007
|
'cn-shenzhen-su18-b01': "polardb.aliyuncs.com",
|
|
13007
13008
|
'cn-wuhan': "polardb.aliyuncs.com",
|
|
13008
|
-
'cn-wulanchabu': "polardb.aliyuncs.com",
|
|
13009
13009
|
'cn-yushanfang': "polardb.aliyuncs.com",
|
|
13010
13010
|
'cn-zhangbei': "polardb.aliyuncs.com",
|
|
13011
13011
|
'cn-zhangbei-na61-b01': "polardb.aliyuncs.com",
|
|
@@ -16281,6 +16281,9 @@ class Client extends openapi_client_1.default {
|
|
|
16281
16281
|
if (!tea_util_1.default.isUnset(request.startTime)) {
|
|
16282
16282
|
query["StartTime"] = request.startTime;
|
|
16283
16283
|
}
|
|
16284
|
+
if (!tea_util_1.default.isUnset(request.type)) {
|
|
16285
|
+
query["Type"] = request.type;
|
|
16286
|
+
}
|
|
16284
16287
|
let req = new $OpenApi.OpenApiRequest({
|
|
16285
16288
|
query: openapi_util_1.default.query(query),
|
|
16286
16289
|
});
|