waldur-cli openstack network delete
Delete openstack networks. Batch-capable: pass several UUIDs, or omit them and pipe UUIDs in on stdin (one per line -- a bare UUID or a JSON object with a uuid field, so list --format ndjson composes directly). One failure doesn't stop the rest; the command exits non-zero afterward if any item failed.
Usage
| waldur-cli openstack network delete [UUID]...
|
| Flag |
Type |
Description |
[UUID]... |
positional, 0 or more |
uuid(s) of the resource. Reads from stdin if omitted. |
Examples
| waldur-cli openstack network delete <uuid>
|
Several at once:
| waldur-cli openstack network delete <uuid-1> <uuid-2>
|
From a filtered list, without an intermediate jq:
| waldur-cli openstack network list --format ndjson --filter state=OK | waldur-cli openstack network delete
|
Preview without deleting:
| waldur-cli openstack network delete <uuid> --dry-run
|
Global options
Every command also accepts --api-url, --token, --profile, --format, and --debug; mutating commands additionally accept --dry-run. See Getting started for what each does.