@alicloud/polardb20170801 5.1.5 → 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 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
  };
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) {
@@ -16279,6 +16281,9 @@ class Client extends openapi_client_1.default {
16279
16281
  if (!tea_util_1.default.isUnset(request.startTime)) {
16280
16282
  query["StartTime"] = request.startTime;
16281
16283
  }
16284
+ if (!tea_util_1.default.isUnset(request.type)) {
16285
+ query["Type"] = request.type;
16286
+ }
16282
16287
  let req = new $OpenApi.OpenApiRequest({
16283
16288
  query: openapi_util_1.default.query(query),
16284
16289
  });