Method: operations.delete
Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
This method deletes a specified long-running operation, indicating the client is no longer interested in the results without actually canceling the operation itself.
Uses an HTTP DELETE request with the operation name as a path parameter and an empty request body.
Returns an empty response body upon successful deletion or a google.rpc.Code.UNIMPLEMENTED error if unsupported by the server.
Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-19 UTC."],[],["The core content details the deletion of a long-running operation via an HTTP DELETE request. The request targets a specific operation resource identified by its `name` path parameter in the URL. The request body must be empty. A successful deletion yields an empty response body, indicating the client is no longer tracking the operation's result. If the operation isn't supported the server will return `google.rpc.Code.UNIMPLEMENTED`.\n"]]