Skip to content

cub filter delete

cub filter delete

Delete a filter or multiple filters

Synopsis

Delete a filter or multiple filters using bulk operations.

Single filter delete:

  cub filter delete my-filter

Bulk delete with --where:

Delete multiple filters at once based on search criteria.

Examples:

  # Delete all filters for Units
  cub filter delete --where "From = 'Unit'"

  # Delete filters with specific resource type
  cub filter delete --where "ResourceType = 'apps/v1/Deployment'"

  # Delete filters across all spaces (requires --space "*")
  cub filter delete --space "*" --where "Labels.cleanup = 'true'"

  # Delete specific filters by slug
  cub filter delete --filter-entity my-filter,another-filter
cub filter delete [<slug or id>] [flags]

Options

      --filter string           Filter entity to apply to the list. Specify as 'space/filter' for cross-space filters or just 'filter' for current space. Supports both slugs and UUIDs. The filter will be combined with any --where clause using AND logic. Examples: "production-filters/security-check", "my-filter-uuid", "validation-rules"
      --filter-entity strings   target specific filters by slug or UUID for bulk delete (can be repeated or comma-separated)
  -h, --help                    help for delete
      --jq string               jq expression, suppressing default output
      --json                    JSON output, suppressing default output
      --quiet                   No default output.
      --verbose                 Detailed output, additive with default output
      --where string            Filter expression using SQL-inspired syntax. Supports conjunctions with AND. String operators: =, !=, <, >, <=, >=, LIKE, ILIKE, ~~, !~~, ~, ~*, !~, !~*. Pattern matching with LIKE/ILIKE uses % and _ wildcards. Regex operators (~, ~*, !~, !~*) support POSIX regular expressions. Examples: "Slug LIKE 'app-%'", "DisplayName ILIKE '%backend%'", "Slug ~ '^[a-z]+-[0-9]+$'"
      --yaml                    YAML output, suppressing default output
      --yq string               yq expression, suppressing default output

Options inherited from parent commands

      --context string   The context to use for this command
      --debug            Debug output
      --space string     space ID to perform command on

SEE ALSO