get-folder
dci get-folder id
Returns the specified Cloud Analytics folder.
Output
OK - Folder returned.
By default dci renders the result as a table. Use --output json to get the full structure described below — see Output formats.
| Field | Type | Description |
|---|---|---|
id | string | Folder ID. |
name | string | Folder name. |
description | string | Folder description. |
parentFolderId | string | Identifier of the parent folder. Set to "root" if the folder is at the top level. Default: "root". |
Raw JSON schema
{
"type": "object",
"description": "A Cloud Analytics folder.",
"properties": {
"id": {
"type": "string",
"description": "Folder ID."
},
"name": {
"type": "string",
"description": "Folder name."
},
"description": {
"type": "string",
"description": "Folder description."
},
"parentFolderId": {
"type": "string",
"description": "Identifier of the parent folder. Set to \"root\" if the folder is at the top level.",
"default": "root",
"example": "root"
}
}
}