Skip to main content

team_folders_tree

Creates, updates, deletes, gets or lists a team_folders_tree resource.

Overview

Nameteam_folders_tree
TypeResource
Idgoogle.dataform.team_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:

NameAccessible byRequired ParamsOptional ParamsDescription
delete_treedeleteprojectsId, locationsId, teamFoldersIdDeletes a TeamFolder 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.

NameDatatypeDescription
locationsIdstring
projectsIdstring
teamFoldersIdstring

DELETE examples

Deletes a TeamFolder with its contents (Folders, Repositories, Workspaces, ReleaseConfigs, and WorkflowConfigs).

DELETE FROM google.dataform.team_folders_tree
WHERE projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND teamFoldersId = '{{ teamFoldersId }}' --required
;