From 80063c59d042c79b13095f6655c024b96da47f8f Mon Sep 17 00:00:00 2001 From: Michael Kovalsky Date: Fri, 21 Jun 2024 13:53:38 +0300 Subject: [PATCH] updated init file to include new functions --- src/sempy_labs/__init__.py | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/src/sempy_labs/__init__.py b/src/sempy_labs/__init__.py index 99b0f93e..28a8939c 100644 --- a/src/sempy_labs/__init__.py +++ b/src/sempy_labs/__init__.py @@ -37,6 +37,18 @@ list_workspace_role_assignments, create_warehouse, update_item, + list_custom_pools, + create_custom_pool, + update_custom_pool, + assign_workspace_to_capacity, + unassign_workspace_from_capacity, + get_spark_settings, + update_spark_settings, + add_user_to_workspace, + delete_user_from_workspace, + update_workspace_user, + list_workspace_users, + assign_workspace_to_dataflow_storage, ) from sempy_labs._helper_functions import ( @@ -150,5 +162,17 @@ #'visualize_vertipaq', "import_vertipaq_analyzer", "list_semantic_model_objects", - "list_shortcuts" + "list_shortcuts", + "list_custom_pools", + "create_custom_pool", + "update_custom_pool", + "assign_workspace_to_capacity", + "unassign_workspace_from_capacity", + "get_spark_settings", + "update_spark_settings", + "add_user_to_workspace", + "delete_user_from_workspace", + "update_workspace_user", + "list_workspace_users", + "assign_workspace_to_dataflow_storage" ]