@alicloud/oos20190601 3.2.1 → 3.2.2

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
@@ -2420,6 +2420,7 @@ export declare class DeleteExecutionsRequest extends $tea.Model {
2420
2420
  * ["exec-xxx"]
2421
2421
  */
2422
2422
  executionIds?: string;
2423
+ force?: boolean;
2423
2424
  /**
2424
2425
  * @remarks
2425
2426
  * The region ID.
package/dist/client.js CHANGED
@@ -1153,12 +1153,14 @@ class DeleteExecutionsRequest extends $tea.Model {
1153
1153
  static names() {
1154
1154
  return {
1155
1155
  executionIds: 'ExecutionIds',
1156
+ force: 'Force',
1156
1157
  regionId: 'RegionId',
1157
1158
  };
1158
1159
  }
1159
1160
  static types() {
1160
1161
  return {
1161
1162
  executionIds: 'string',
1163
+ force: 'boolean',
1162
1164
  regionId: 'string',
1163
1165
  };
1164
1166
  }
@@ -9704,6 +9706,9 @@ class Client extends openapi_client_1.default {
9704
9706
  if (!tea_util_1.default.isUnset(request.executionIds)) {
9705
9707
  query["ExecutionIds"] = request.executionIds;
9706
9708
  }
9709
+ if (!tea_util_1.default.isUnset(request.force)) {
9710
+ query["Force"] = request.force;
9711
+ }
9707
9712
  if (!tea_util_1.default.isUnset(request.regionId)) {
9708
9713
  query["RegionId"] = request.regionId;
9709
9714
  }