We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6511424 commit 33959dfCopy full SHA for 33959df
cognition_objects/markdown_dataset.py
@@ -177,6 +177,7 @@ def update(
177
dataset_id: str,
178
name: Optional[str] = None,
179
description: Optional[str] = None,
180
+ useable_etl_configurations: Optional[List[Dict[str, Any]]] = None,
181
with_commit: bool = True,
182
) -> CognitionMarkdownDataset:
183
dataset = get(org_id, dataset_id)
@@ -187,6 +188,9 @@ def update(
187
188
if description:
189
dataset.description = description
190
191
+ if useable_etl_configurations:
192
+ dataset.useable_etl_configurations = useable_etl_configurations
193
+
194
general.flush_or_commit(with_commit)
195
196
return dataset
0 commit comments