From b11a0fbf526836eb21805bb3602e68c2b288e932 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong <46797220+maximearmstrong@users.noreply.github.com> Date: Mon, 18 Nov 2024 11:57:20 -0500 Subject: [PATCH] [dagster-fivetran] Mark FivetranWorkspace as experimental (#25962) ## Summary & Motivation As title. All other new APIs for Fivetran are marked as experimental, but I missed this one. --- .../libraries/dagster-fivetran/dagster_fivetran/resources.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py b/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py index 08e4fea7f0283..413cb6d70747f 100644 --- a/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py +++ b/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py @@ -593,6 +593,7 @@ def get_groups(self) -> Mapping[str, Any]: return self._make_request("GET", "groups") +@experimental class FivetranWorkspace(ConfigurableResource): """This class represents a Fivetran workspace and provides utilities to interact with Fivetran APIs.