nestjs / azure-storage

Azure Storage module for Nest framework (node.js) ☁️
https://nestjs.com
MIT License
87 stars 35 forks source link

How can I delete an image from Azure Storage Container? #136

Closed furkand closed 4 years ago

furkand commented 4 years ago

I'm submitting a...


[ ] Regression 
[ ] Bug report
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.

Current behavior

Expected behavior

Minimal reproduction of the problem with instructions

What is the motivation / use case for changing the behavior?

Environment


Nest version: X.Y.Z


For Tooling issues:
- Node version: XX  
- Platform:  

Others:

dbugnar commented 4 years ago

Currently, there is no support in nestjs/azure-storage for deleting a blob from a container. You can use the azure/storage-blob for this.

manekinekko commented 4 years ago

We intentionally don't support destructive operation from this package (for security reasons). @furkand you can use the Portal or the az cli to delete your resources.

Cheers.