microsoft / knack

Knack - A Python command line interface framework
https://pypi.python.org/pypi/knack
MIT License
348 stars 95 forks source link

[Config] Support listing sections #217

Closed jiasli closed 4 years ago

jiasli commented 4 years ago

Support listing sections.

This PR supports https://github.com/Azure/azure-cli/pull/14436, where az config get can list all sections.

> az config get
{
  "cloud": [
    {
      "name": "name",
      "source": "C:\\Users\\jiasli\\.azure\\config",
      "value": "AzureCloud"
    }
  ],
  "defaults": [
    {
      "name": "group",
      "source": "C:\\Users\\jiasli\\.azure\\config",
      "value": "rg1"
    }
  ]
}