Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.65 KB

File metadata and controls

56 lines (40 loc) · 1.65 KB

stackit dns zone list

Lists DNS zones

Synopsis

Lists DNS zones. Successfully deleted zones are not listed by default.

stackit dns zone list [flags]

Examples

  List DNS zones
  $ stackit dns zone list

  List DNS zones in JSON format
  $ stackit dns zone list --output-format json

  List up to 10 DNS zones
  $ stackit dns zone list --limit 10

  List DNS zones, including deleted
  $ stackit dns zone list --include-deleted

Options

      --active                 Filter for active zones
  -h, --help                   Help for "stackit dns zone list"
      --inactive               Filter for inactive zones
      --include-deleted        Includes successfully deleted zones (if unset, these are filtered out)
      --limit int              Maximum number of entries to list
      --name-like string       Filter by name
      --order-by-name string   Order by name, one of ["asc" "desc"]
      --page-size int          Number of items fetched in each API call. Does not affect the number of items in the command output (default 100)

Options inherited from parent commands

  -y, --assume-yes             If set, skips all confirmation prompts
      --async                  If set, runs the command asynchronously
  -o, --output-format string   Output format, one of ["json" "pretty" "none" "yaml"]
  -p, --project-id string      Project ID
      --region string          Target region for region-specific requests
      --verbosity string       Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")

SEE ALSO