@alicloud/adb20211201 1.5.2 → 1.5.3

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
@@ -1755,6 +1755,8 @@ export declare class DescribeApsActionLogsResponse extends $tea.Model {
1755
1755
  }
1756
1756
  export declare class DescribeApsResourceGroupsRequest extends $tea.Model {
1757
1757
  DBClusterId?: string;
1758
+ regionId?: string;
1759
+ workloadId?: string;
1758
1760
  static names(): {
1759
1761
  [key: string]: string;
1760
1762
  };
package/dist/client.js CHANGED
@@ -2570,11 +2570,15 @@ class DescribeApsResourceGroupsRequest extends $tea.Model {
2570
2570
  static names() {
2571
2571
  return {
2572
2572
  DBClusterId: 'DBClusterId',
2573
+ regionId: 'RegionId',
2574
+ workloadId: 'WorkloadId',
2573
2575
  };
2574
2576
  }
2575
2577
  static types() {
2576
2578
  return {
2577
2579
  DBClusterId: 'string',
2580
+ regionId: 'string',
2581
+ workloadId: 'string',
2578
2582
  };
2579
2583
  }
2580
2584
  constructor(map) {
@@ -12268,6 +12272,12 @@ class Client extends openapi_client_1.default {
12268
12272
  if (!tea_util_1.default.isUnset(request.DBClusterId)) {
12269
12273
  body["DBClusterId"] = request.DBClusterId;
12270
12274
  }
12275
+ if (!tea_util_1.default.isUnset(request.regionId)) {
12276
+ body["RegionId"] = request.regionId;
12277
+ }
12278
+ if (!tea_util_1.default.isUnset(request.workloadId)) {
12279
+ body["WorkloadId"] = request.workloadId;
12280
+ }
12271
12281
  let req = new $OpenApi.OpenApiRequest({
12272
12282
  body: openapi_util_1.default.parseToMap(body),
12273
12283
  });