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'
Optional --detail flag for
instance listOptional --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