Delete Named Storages avatar
Delete Named Storages

Pricing

Pay per usage

Go to Store
Delete Named Storages

Delete Named Storages

Developed by

Ondra Urban

Maintained by Community

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.

0.0 (0)

Pricing

Pay per usage

1

Monthly users

1

Last modified

4 years ago

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}

Pricing

Pricing model

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.