You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The method includes a functionality to create a new folder inside the organization specified by the defined title and the optional uid
@@ -119,6 +132,11 @@ The method includes a functionality to create a new folder inside the organizati
119
132
120
133
-`title` _str_ - Specify the title of the folder
121
134
-`uid` _str_ - Specify the uid of the folder (default None)
135
+
-`parent_uid` _str_ - Specify the parent_uid of the folder (default None)
136
+
137
+
Required Permissions:
138
+
-`Action`- folders:create, folders:write
139
+
-`Scope`- folders:*
122
140
123
141
124
142
**Raises**:
@@ -151,6 +169,10 @@ The method includes a functionality to update a folder information inside the or
151
169
-`version` _int_ - Specify the version of the folder (default 0)
152
170
-`overwrite` _bool_ - Should the already existing folder information be overwritten (default False)
153
171
172
+
Required Permissions:
173
+
-`Action`- folders:write
174
+
-`Scope`- folders:*
175
+
154
176
155
177
**Raises**:
156
178
@@ -162,6 +184,36 @@ The method includes a functionality to update a folder information inside the or
162
184
163
185
-`api_call` _dict_ - Returns an updated folder
164
186
187
+
<a id="folder.Folder.move_folder"></a>
188
+
189
+
#### move\_folder
190
+
191
+
```python
192
+
defmove_folder(uid: str, parent_uid: str=None)
193
+
```
194
+
195
+
The method includes a functionality to move a folder inside the organization specified by the defined uid. This feature is only relevant if nested folders are enabled
196
+
197
+
**Arguments**:
198
+
199
+
-`uid`_str_ - Specify the uid of the folder
200
+
-`parent_uid`_str_ - Specify the parent_uid of the folder. If the value is None, then the folder is moved under the root (default None)
"""The method includes a functionality to test a datasource uid rule specified by the expr, the condition, a list of data queries and the datasource_uid
0 commit comments