Delete Named Storages
No credit card required
Delete Named Storages
No credit card required
Deletes your named storages by matching their names with a RegExp, selecting a date, or more. Enables deleting multiple named storages fast and safe using a UI rather than API.
Apify Platform does not provide an option in the UI to delete your named storages and once you create a certain amount of them, navigation becomes slow and cumbersome. This actor attempts to solve that problem by giving you a simple UI that should serve most of your storage deleting requirements.
Usage
By selecting the type of named storage you want to delete and providing a number of filtering options, you can use this actor to delete one, many or all of your named storages in TWO clicks.
Safety check
To save you from accidentally deleting storages when using wrong filters, the actor does not delete the storages right away, but only saves a list of the ones to be deleted and displays a link for you to review. If you're satisfied with the selected list, you can then run the actor again to finally delete the storages.
Examples
Delete all datasets with STAGING
in their name:
1{ 2 "storageType": "DATASET", 3 "matchingExpression": "STAGING" 4}
Delete all key-value stores created on 20 January 2020:
1{ 2 "storageType": "KEY_VALUE_STORE", 3 "matchingExpression": ".*", 4 "createdAt": "2020-01-20" 5}
Delete the newest (youngest) request queue:
1{ 2 "storageType": "REQUEST_QUEUE", 3 "matchingExpression": ".*", 4 "newestFirst": true, 5 "maxDeletedStorages": 1 6}
Delete 100 oldest datasets whose name starts with "TEST":
1{ 2 "storageType": "DATASET", 3 "matchingExpression": "^TEST", 4 "maxDeletedStorages": 100 5}
Actor Metrics
1 monthly user
-
1 star
Created in Jan 2020
Modified 4 years ago