@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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -3080,6 +3080,7 @@ export class DeleteExecutionsRequest extends $tea.Model {
|
|
|
3080
3080
|
* ["exec-xxx"]
|
|
3081
3081
|
*/
|
|
3082
3082
|
executionIds?: string;
|
|
3083
|
+
force?: boolean;
|
|
3083
3084
|
/**
|
|
3084
3085
|
* @remarks
|
|
3085
3086
|
* The region ID.
|
|
@@ -3091,6 +3092,7 @@ export class DeleteExecutionsRequest extends $tea.Model {
|
|
|
3091
3092
|
static names(): { [key: string]: string } {
|
|
3092
3093
|
return {
|
|
3093
3094
|
executionIds: 'ExecutionIds',
|
|
3095
|
+
force: 'Force',
|
|
3094
3096
|
regionId: 'RegionId',
|
|
3095
3097
|
};
|
|
3096
3098
|
}
|
|
@@ -3098,6 +3100,7 @@ export class DeleteExecutionsRequest extends $tea.Model {
|
|
|
3098
3100
|
static types(): { [key: string]: any } {
|
|
3099
3101
|
return {
|
|
3100
3102
|
executionIds: 'string',
|
|
3103
|
+
force: 'boolean',
|
|
3101
3104
|
regionId: 'string',
|
|
3102
3105
|
};
|
|
3103
3106
|
}
|
|
@@ -24834,6 +24837,10 @@ export default class Client extends OpenApi {
|
|
|
24834
24837
|
query["ExecutionIds"] = request.executionIds;
|
|
24835
24838
|
}
|
|
24836
24839
|
|
|
24840
|
+
if (!Util.isUnset(request.force)) {
|
|
24841
|
+
query["Force"] = request.force;
|
|
24842
|
+
}
|
|
24843
|
+
|
|
24837
24844
|
if (!Util.isUnset(request.regionId)) {
|
|
24838
24845
|
query["RegionId"] = request.regionId;
|
|
24839
24846
|
}
|