Querying Custom Parameters in the Profile List
Run the following command to query custom parameters in the profile list of Cloud CLI. The query result can be output in a table or in JSON or TSV format. By default, the query result is output in JSON format.
cloud configure list --cli-custom=true
cloud configure list --cli-custom=true
{
"current": "test",
"profiles": [
{
"name": "default",
"custom": {}
},
{
"name": "test",
"custom": {
"password": {
"value": "****",
"isEncrypted": true
},
"projectId": {
"value": "06810000000000000000000000f89d2e",
"isEncrypted": false
}
}
}
]
} Encrypted custom parameter values are anonymized.
Use --cli-query to filter the query result, and use --cli-output to specify the output format. The default output format is JSON. In the following example, all custom parameters of a profile named test are queried, and the query result is output in JSON format:
cloud configure list --cli-custom=true --cli-query="profiles[?name=='test'].custom" --cli-output=json
[
{
"password": {
"isEncrypted": true,
"value": "****"
},
"projectId": {
"isEncrypted": false,
"value": "06810000000000000000000000f89d2e"
}
}
] What is your overall rating for this page?
Thank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot