A municipal foghorn museum catalog stores each artifact as a Cosmos DB for NoSQL item. A curator retires one artifact and the app must remove only that document. Which SDK action should the developer call?
Select an answer to reveal the explanation.
Short Explanation
One retired artifact is one folder pull, not demolishing the museum wing. Point the Cosmos SDK delete at that item’s id plus partition key. Leave the container and account standing.
Full Explanation
Cosmos DB item operations include create, read, replace/upsert, and delete against a specific id and partition key. Deleting the container or the account removes far more than the retired artifact. Consistency levels control read/write visibility; they do not delete items. TTL can expire items later as a supporting pattern, but the immediate curator action is an SDK item delete.