Skip to content

Flags for instance list #88

@jexp

Description

@jexp

Optional --detail flag for instance list

  • So that I get all details for each instance without having to run two commands in a loop.
  • like today and then in a non-useable output format with repeat header and table header and footer
for i in `./neo4j-cli aura instance list | grep '' | cut -d'' -f 2 | grep -v ID`; do 
   ./neo4j-cli aura instance get $i; 
done

Optional --id or -s or --short output that only lists the id's for scripting

Today you have to do things like grep + cut or jq

only list id's
./neo4j-cli aura instance list --output json | jq -r '.data[].id'

convert output to csv
./neo4j-cli aura instance list --output json | jq -r '.data[] | [.id,.name,.tenant_id] | @csv'

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions