cub unit data
cub unit data
Show the config data of a unit
Synopsis
Display the configuration data of a unit, as text.
Replaces 'cub unit get --data-only'. Use --output-file / -O to write the data to a file instead of stdout.
With --where, reads every unit the clause selects in one request rather than one per unit, and prints the endpoint's rows -- identity, DataHash, DataSize and the document -- as JSON, because a stream of concatenated documents cannot say which unit each came from. Scoped to --space unless that is "*". Examples:
cub unit data --space my-space my-unit cub unit data --space my-space --where "Slug LIKE 'app-%'" cub unit data --space "*" --where "Labels.Tier = 'backend'" -o jq='.[].Slug'
cub unit data [<unit>] [flags]
Options
-h, --help help for data
-o, --output string Output format. One of: json, yaml, name, wide, mutations, jq=<expr>, yq=<expr>, custom-columns=<spec>
-O, --output-file string Write data to file instead of stdout
--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, NOT LIKE, ILIKE, ~~, !~~, ~, ~*, !~, !~*. Pattern matching with LIKE/ILIKE uses % and _ wildcards. Regex operators (~, ~*, !~, !~*) support POSIX regular expressions. A related entity is referenced by prefix, as in "UpstreamUnit.Slug = 'base'"; when the reference names a list, a * segment matches any element, as in "FromLink.*.Slug = 'upgrade-app'". Examples: "Slug LIKE 'app-%'", "DisplayName ILIKE '%backend%'", "Slug ~ '^[a-z]+-[0-9]+$'"
Options inherited from parent commands
--context string The context to use for this command
--debug Debug output
--space string space to operate in, by slug or UUID. Omitted, a list or bulk operation spans the organization and a single entity is named as <space>/<slug>
SEE ALSO
- cub unit - Unit commands