folders_tree
Creates, updates, deletes, gets or lists a folders_tree resource.
Overview
| Name | folders_tree |
| Type | Resource |
| Id | google.dataform.folders_tree |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
delete_tree | delete | projectsId, locationsId, foldersId | Deletes a Folder with its contents (Folders, Repositories, Workspaces, ReleaseConfigs, and WorkflowConfigs). |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
foldersId | string | |
locationsId | string | |
projectsId | string |
DELETE examples
- delete_tree
Deletes a Folder with its contents (Folders, Repositories, Workspaces, ReleaseConfigs, and WorkflowConfigs).
DELETE FROM google.dataform.folders_tree
WHERE projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND foldersId = '{{ foldersId }}' --required
;