Skip to content

cub target update

cub target update

Update a target or multiple targets

Synopsis

Update a target or multiple targets using bulk operations.

Single target update:

  cub target update --space my-space my-target

Bulk update with --patch:

Update multiple targets at once based on search criteria. Requires --patch flag with no positional arguments.

Examples:

  # Update all targets with a specific toolchain type using JSON patch
  echo '{"Parameters": "{}"}' | cub target update --patch --where "ToolchainType = 'Kubernetes/YAML'" --from-stdin

  # Update specific targets by slug
  cub target update --patch --target my-target,another-target --from-stdin < patch.json
cub target update [<slug or id>] [flags]

Options

      --annotation strings      annotations in key=value format; can separate by commas and/or use multiple instances of the flag
      --delete-gate strings     delete gates in key[=true] format; can separate by commas and/or use multiple instances of the flag
      --filename string         Read the ConfigHub entity JSON from file, URL (https://), or stdin (-); mutually exclusive with --from-stdin
      --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"
      --from-stdin              Read the ConfigHub entity JSON (e.g., retrieved with cub <entity> get --quiet --json) from stdin; merged with command arguments on create, and merged with command arguments and existing entity on update
  -h, --help                    help for update
      --jq string               jq expression, suppressing default output
      --json                    JSON output, suppressing default output
      --label strings           labels in key=value format; can separate by commas and/or use multiple instances of the flag
      --livestate-type string   The toolchain type for live state of the target's provider type (use '-' to clear).
                                    (e.g., Kubernetes/YAML, ConfigHub/YAML)
      --option strings          bridge options in key=value format; can separate by commas and/or use multiple instances of the flag
      --patch                   use patch API for individual or bulk operations
      --permission strings      permission in format Action:UserIDOrUsername to add, or -Action:UserIDOrUsername to remove (e.g., Manage:user@example.com, -View:user@example.com, can be repeated)
      --quiet                   No default output.
      --refresh-triggers        re-list the Triggers matching WhereTrigger and/or TriggerFilterID even if these fields have not changed
      --replace                 Replace entity instead of merging when using --from-stdin or --filename
      --target strings          target specific targets by slug or UUID for bulk patch (can be repeated or comma-separated)
      --trigger-filter string   Filter slug or UUID to identify Triggers that should be invoked on Units associated with this Target (use '-' to clear)
      --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]+$'"
      --where-trigger string    filter expression to identify Triggers that should be invoked on Units associated with this Target (use '-' to clear)
      --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