From 31161f03bba0a06a5d712cf0de0d16b045262084 Mon Sep 17 00:00:00 2001 From: Vincent Date: Thu, 29 Aug 2024 13:32:04 +0200 Subject: [PATCH] workflow_orchestration is now data_workflows rst and add trigger doc --- CHANGELOG.md | 4 ++++ cognite/client/_version.py | 2 +- ...low_orchestration.rst => data_workflows.rst} | 17 +++++++++++++++++ docs/source/index.rst | 2 +- pyproject.toml | 2 +- 5 files changed, 24 insertions(+), 3 deletions(-) rename docs/source/{workflow_orchestration.rst => data_workflows.rst} (77%) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb0d1dc04..021f1d7b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## [7.55.2] - 2024-08-29 +### Fixed +- Turn workflow_orchestration into data_workflows and add trigger doc + ## [7.55.1] - 2024-08-29 ### Fixed - Missing exports for workflow triggers diff --git a/cognite/client/_version.py b/cognite/client/_version.py index edd6657ff..a2f3828ca 100644 --- a/cognite/client/_version.py +++ b/cognite/client/_version.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "7.55.1" +__version__ = "7.55.2" __api_subversion__ = "20230101" diff --git a/docs/source/workflow_orchestration.rst b/docs/source/data_workflows.rst similarity index 77% rename from docs/source/workflow_orchestration.rst rename to docs/source/data_workflows.rst index 002395270..776e41f0f 100644 --- a/docs/source/workflow_orchestration.rst +++ b/docs/source/data_workflows.rst @@ -71,6 +71,23 @@ Update Status of Async Task ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. automethod:: cognite.client._api.workflows.WorkflowTaskAPI.update +Workflow Triggers +------------------- +Create triggers for workflow executions +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. automethod:: cognite.client._api.workflows.WorkflowTriggerAPI.create + +Delete triggers for workflow executions +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. automethod:: cognite.client._api.workflows.WorkflowTriggerAPI.delete + +Get triggers for workflow executions +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. automethod:: cognite.client._api.workflows.WorkflowTriggerAPI.get_triggers + +Get trigger run history for a workflow trigger +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. automethod:: cognite.client._api.workflows.WorkflowTriggerAPI.get_trigger_run_history Data Workflows data classes ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/docs/source/index.rst b/docs/source/index.rst index 2c6883410..f8d2044fc 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -53,7 +53,7 @@ Contents data_organization transformations functions - workflow_orchestration + data_workflows unit_catalog filters deprecated diff --git a/pyproject.toml b/pyproject.toml index a3566ee1b..f2c757338 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "cognite-sdk" -version = "7.55.1" +version = "7.55.2" description = "Cognite Python SDK" readme = "README.md" documentation = "https://cognite-sdk-python.readthedocs-hosted.com"