diff --git a/swagger/docs.go b/swagger/docs.go index 2d33b8b756b9..7dc3b1ff4c2b 100644 --- a/swagger/docs.go +++ b/swagger/docs.go @@ -1903,6 +1903,14 @@ const docTemplate = `{ "services.GalleryOpStatus": { "type": "object", "properties": { + "cancellable": { + "description": "Cancellable is true if the operation can be cancelled", + "type": "boolean" + }, + "cancelled": { + "description": "Cancelled is true if the operation was cancelled", + "type": "boolean" + }, "deletion": { "description": "Deletion is true if the operation is a deletion", "type": "boolean" diff --git a/swagger/swagger.json b/swagger/swagger.json index 5a65a650a420..ef5bf82c51a8 100644 --- a/swagger/swagger.json +++ b/swagger/swagger.json @@ -1896,6 +1896,14 @@ "services.GalleryOpStatus": { "type": "object", "properties": { + "cancellable": { + "description": "Cancellable is true if the operation can be cancelled", + "type": "boolean" + }, + "cancelled": { + "description": "Cancelled is true if the operation was cancelled", + "type": "boolean" + }, "deletion": { "description": "Deletion is true if the operation is a deletion", "type": "boolean" diff --git a/swagger/swagger.yaml b/swagger/swagger.yaml index d15d5b962c60..a2bdf061ccc8 100644 --- a/swagger/swagger.yaml +++ b/swagger/swagger.yaml @@ -727,6 +727,12 @@ definitions: type: object services.GalleryOpStatus: properties: + cancellable: + description: Cancellable is true if the operation can be cancelled + type: boolean + cancelled: + description: Cancelled is true if the operation was cancelled + type: boolean deletion: description: Deletion is true if the operation is a deletion type: boolean