Skip to content

orca recordset

Manage Designate recordsets.

The reference below is generated from the live CLI by mkdocs-click. It always reflects the version installed.

orca recordset

Manage DNS recordsets (Designate).

Usage:

orca recordset [OPTIONS] COMMAND [ARGS]...

Options:

Name Type Description Default
--help boolean Show this message and exit. False

Subcommands

  • create: Create a recordset in a zone.
  • delete: Delete a recordset.
  • list: List recordsets in a zone.
  • set: Update a recordset in a zone.
  • show: Show recordset details.

orca recordset create

Create a recordset in a zone.

Examples: orca recordset create example.com. www.example.com. --type A --record 1.2.3.4 orca recordset create example.com. example.com. --type MX --record "10 mail.example.com." orca recordset create example.com. example.com. --type A --record 1.2.3.4 --record 5.6.7.8

Usage:

orca recordset create [OPTIONS] ZONE NAME

Options:

Name Type Description Default
--type text Record type (A, AAAA, CNAME, MX, TXT, …). Sentinel.UNSET
--record text Record value (repeatable for multiple values). Sentinel.UNSET
--ttl integer TTL in seconds. None
--description text Recordset description. None
--help boolean Show this message and exit. False

orca recordset delete

Delete a recordset.

ZONE and RECORDSET can be IDs or names.

Usage:

orca recordset delete [OPTIONS] ZONE RECORDSET_ID

Options:

Name Type Description Default
--yes, -y boolean Skip confirmation. False
--help boolean Show this message and exit. False

orca recordset list

List recordsets in a zone.

ZONE can be a zone ID or name.

Usage:

orca recordset list [OPTIONS] ZONE

Options:

Name Type Description Default
--type text Filter by record type (A, AAAA, CNAME, MX, …). None
--name text Filter by record name. None
--noindent boolean Disable JSON indentation. False
--max-width integer Maximum table width (0 = unlimited). None
--fit-width boolean Fit table to terminal width. False
--column, -c text Column to include (repeatable). Shows all if omitted. Sentinel.UNSET
--format, -f choice (table | json | value) Output format. table
--help boolean Show this message and exit. False

orca recordset set

Update a recordset in a zone.

ZONE and RECORDSET can be IDs or names. The --record option replaces all existing record values.

Usage:

orca recordset set [OPTIONS] ZONE RECORDSET_ID

Options:

Name Type Description Default
--record text Record value (repeatable — replaces all existing values). Sentinel.UNSET
--ttl integer TTL in seconds. None
--description text Recordset description. None
--help boolean Show this message and exit. False

orca recordset show

Show recordset details.

ZONE and RECORDSET can be IDs or names.

Usage:

orca recordset show [OPTIONS] ZONE RECORDSET_ID

Options:

Name Type Description Default
--noindent boolean Disable JSON indentation. False
--max-width integer Maximum table width (0 = unlimited). None
--fit-width boolean Fit table to terminal width. False
--column, -c text Column to include (repeatable). Shows all if omitted. Sentinel.UNSET
--format, -f choice (table | json | value) Output format. table
--help boolean Show this message and exit. False