@alicloud/polardb20170801 5.0.3 → 5.0.4
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 +10 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +14 -0
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
|
};
|
package/dist/client.js
CHANGED
|
@@ -4442,6 +4442,7 @@ class DescribeDBNodePerformanceRequest extends $tea.Model {
|
|
|
4442
4442
|
interval: 'Interval',
|
|
4443
4443
|
key: 'Key',
|
|
4444
4444
|
startTime: 'StartTime',
|
|
4445
|
+
type: 'Type',
|
|
4445
4446
|
};
|
|
4446
4447
|
}
|
|
4447
4448
|
static types() {
|
|
@@ -4452,6 +4453,7 @@ class DescribeDBNodePerformanceRequest extends $tea.Model {
|
|
|
4452
4453
|
interval: 'string',
|
|
4453
4454
|
key: 'string',
|
|
4454
4455
|
startTime: 'string',
|
|
4456
|
+
type: 'string',
|
|
4455
4457
|
};
|
|
4456
4458
|
}
|
|
4457
4459
|
}
|
|
@@ -4586,6 +4588,7 @@ class DescribeDBProxyPerformanceRequest extends $tea.Model {
|
|
|
4586
4588
|
interval: 'Interval',
|
|
4587
4589
|
key: 'Key',
|
|
4588
4590
|
startTime: 'StartTime',
|
|
4591
|
+
type: 'Type',
|
|
4589
4592
|
};
|
|
4590
4593
|
}
|
|
4591
4594
|
static types() {
|
|
@@ -4596,6 +4599,7 @@ class DescribeDBProxyPerformanceRequest extends $tea.Model {
|
|
|
4596
4599
|
interval: 'string',
|
|
4597
4600
|
key: 'string',
|
|
4598
4601
|
startTime: 'string',
|
|
4602
|
+
type: 'string',
|
|
4599
4603
|
};
|
|
4600
4604
|
}
|
|
4601
4605
|
}
|
|
@@ -16076,6 +16080,9 @@ class Client extends openapi_client_1.default {
|
|
|
16076
16080
|
if (!tea_util_1.default.isUnset(request.startTime)) {
|
|
16077
16081
|
query["StartTime"] = request.startTime;
|
|
16078
16082
|
}
|
|
16083
|
+
if (!tea_util_1.default.isUnset(request.type)) {
|
|
16084
|
+
query["Type"] = request.type;
|
|
16085
|
+
}
|
|
16079
16086
|
let req = new $OpenApi.OpenApiRequest({
|
|
16080
16087
|
query: openapi_util_1.default.query(query),
|
|
16081
16088
|
});
|
|
@@ -16182,6 +16189,9 @@ class Client extends openapi_client_1.default {
|
|
|
16182
16189
|
if (!tea_util_1.default.isUnset(request.startTime)) {
|
|
16183
16190
|
query["StartTime"] = request.startTime;
|
|
16184
16191
|
}
|
|
16192
|
+
if (!tea_util_1.default.isUnset(request.type)) {
|
|
16193
|
+
query["Type"] = request.type;
|
|
16194
|
+
}
|
|
16185
16195
|
let req = new $OpenApi.OpenApiRequest({
|
|
16186
16196
|
query: openapi_util_1.default.query(query),
|
|
16187
16197
|
});
|