msfabricpysdkcore 0.2.6__py3-none-any.whl → 0.2.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- msfabricpysdkcore/coreapi.py +745 -21
- msfabricpysdkcore/otheritems.py +61 -1
- msfabricpysdkcore/tests/test_admin_apis.py +2 -2
- msfabricpysdkcore/tests/test_apache_airflow_job.py +60 -0
- msfabricpysdkcore/tests/test_digital_twin_builder.py +60 -0
- msfabricpysdkcore/tests/test_domains.py +11 -18
- msfabricpysdkcore/tests/test_environments.py +34 -27
- msfabricpysdkcore/tests/test_evenstreams.py +31 -26
- msfabricpysdkcore/tests/test_eventhouses.py +63 -0
- msfabricpysdkcore/tests/test_external_data_shares.py +2 -2
- msfabricpysdkcore/tests/test_fabric_azure_client.py +1 -1
- msfabricpysdkcore/tests/test_folders.py +9 -6
- msfabricpysdkcore/tests/test_gateways.py +3 -3
- msfabricpysdkcore/tests/test_git.py +1 -1
- msfabricpysdkcore/tests/test_items.py +2 -2
- msfabricpysdkcore/tests/test_jobs.py +6 -4
- msfabricpysdkcore/tests/test_kql_dashboards.py +3 -3
- msfabricpysdkcore/tests/test_kql_queryset.py +1 -5
- msfabricpysdkcore/tests/test_kqldatabases.py +3 -3
- msfabricpysdkcore/tests/test_lakehouse.py +6 -10
- msfabricpysdkcore/tests/test_managed_private_endpoints.py +13 -12
- msfabricpysdkcore/tests/test_mirrored_azuredatabricks_catalog.py +81 -0
- msfabricpysdkcore/tests/test_ml_experiments.py +1 -3
- msfabricpysdkcore/tests/test_ml_models.py +2 -3
- msfabricpysdkcore/tests/test_mounted_adf.py +1 -1
- msfabricpysdkcore/tests/test_notebooks.py +3 -2
- msfabricpysdkcore/tests/test_one_lake_data_access_security.py +2 -2
- msfabricpysdkcore/tests/test_other_items.py +2 -2
- msfabricpysdkcore/tests/test_reflex.py +1 -2
- msfabricpysdkcore/tests/test_semantic_model.py +1 -1
- msfabricpysdkcore/tests/test_shortcuts.py +3 -4
- msfabricpysdkcore/tests/test_spark.py +2 -2
- msfabricpysdkcore/tests/test_sparkjobdefinition.py +1 -1
- msfabricpysdkcore/tests/test_sql_endpoint.py +28 -0
- msfabricpysdkcore/tests/test_warehouses.py +1 -1
- msfabricpysdkcore/tests/test_workspaces_capacities.py +8 -8
- msfabricpysdkcore/workspace.py +180 -10
- {msfabricpysdkcore-0.2.6.dist-info → msfabricpysdkcore-0.2.8.dist-info}/METADATA +4 -2
- msfabricpysdkcore-0.2.8.dist-info/RECORD +78 -0
- msfabricpysdkcore/tests/test_deployment_pipeline.py +0 -63
- msfabricpysdkcore/tests/test_evenhouses.py +0 -56
- msfabricpysdkcore-0.2.6.dist-info/RECORD +0 -75
- {msfabricpysdkcore-0.2.6.dist-info → msfabricpysdkcore-0.2.8.dist-info}/WHEEL +0 -0
- {msfabricpysdkcore-0.2.6.dist-info → msfabricpysdkcore-0.2.8.dist-info}/licenses/LICENSE +0 -0
- {msfabricpysdkcore-0.2.6.dist-info → msfabricpysdkcore-0.2.8.dist-info}/top_level.txt +0 -0
msfabricpysdkcore/workspace.py
CHANGED
@@ -6,21 +6,34 @@ from msfabricpysdkcore.coreapi import FabricClientCore
|
|
6
6
|
class Workspace:
|
7
7
|
"""Class to represent a workspace in Microsoft Fabric"""
|
8
8
|
|
9
|
-
def __init__(self, id, display_name, description, type, core_client: FabricClientCore, capacity_id = None
|
9
|
+
def __init__(self, id, display_name, description, type, core_client: FabricClientCore, capacity_id = None,
|
10
|
+
capacity_region = None, one_lake_endpoints = None, capacity_assignment_progress = None,
|
11
|
+
workspace_identity = None) -> None:
|
10
12
|
self.id = id
|
11
13
|
self.display_name = display_name
|
12
14
|
self.description = description
|
13
15
|
self.type = type
|
14
16
|
self.capacity_id = capacity_id
|
17
|
+
self.capacity_region = capacity_region
|
18
|
+
self.one_lake_endpoints = one_lake_endpoints
|
19
|
+
self.capacity_assignment_progress = capacity_assignment_progress
|
20
|
+
self.workspace_identity = workspace_identity
|
15
21
|
|
16
22
|
self.core_client = core_client
|
17
23
|
|
18
24
|
|
19
25
|
def from_dict(dict, core_client):
|
20
26
|
"""Create a Workspace object from a dictionary"""
|
21
|
-
return Workspace(id=dict['id'], display_name=dict['displayName'],
|
27
|
+
return Workspace(id=dict['id'], display_name=dict['displayName'],
|
28
|
+
description=dict['description'],
|
29
|
+
type=dict['type'],
|
30
|
+
capacity_id=dict.get('capacityId', None),
|
31
|
+
capacity_region=dict.get('capacityRegion', None),
|
32
|
+
one_lake_endpoints=dict.get('oneLakeEndpoints', None),
|
33
|
+
capacity_assignment_progress=dict.get('capacityAssignmentProgress', None),
|
34
|
+
workspace_identity=dict.get('workspaceIdentity', None),
|
22
35
|
core_client=core_client)
|
23
|
-
|
36
|
+
|
24
37
|
def __str__(self) -> str:
|
25
38
|
"""Return a string representation of the workspace object"""
|
26
39
|
dict_ = {
|
@@ -28,7 +41,12 @@ class Workspace:
|
|
28
41
|
'display_name': self.display_name,
|
29
42
|
'description': self.description,
|
30
43
|
'type': self.type,
|
31
|
-
'capacity_id': self.capacity_id
|
44
|
+
'capacity_id': self.capacity_id,
|
45
|
+
'capacity_region': self.capacity_region,
|
46
|
+
'one_lake_endpoints': self.one_lake_endpoints,
|
47
|
+
'capacity_assignment_progress': self.capacity_assignment_progress,
|
48
|
+
'workspace_identity': self.workspace_identity
|
49
|
+
|
32
50
|
}
|
33
51
|
return json.dumps(dict_, indent=2)
|
34
52
|
|
@@ -184,6 +202,11 @@ class Workspace:
|
|
184
202
|
def revoke_external_data_share(self, item_id, external_data_share_id):
|
185
203
|
return self.core_client.revoke_external_data_share(workspace_id=self.id, item_id=item_id, external_data_share_id=external_data_share_id)
|
186
204
|
|
205
|
+
# delete
|
206
|
+
def delete_external_data_share(self, item_id, external_data_share_id):
|
207
|
+
"""Delete an external data share from an item in a workspace"""
|
208
|
+
return self.core_client.delete_external_data_share(workspace_id=self.id, item_id=item_id, external_data_share_id=external_data_share_id)
|
209
|
+
|
187
210
|
# Folders
|
188
211
|
# Folders
|
189
212
|
# POST https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/folders
|
@@ -423,6 +446,33 @@ class Workspace:
|
|
423
446
|
def list_mirrored_warehouses(self):
|
424
447
|
return self.core_client.list_mirrored_warehouses(workspace_id=self.id)
|
425
448
|
|
449
|
+
# apache airflow jobs
|
450
|
+
def create_apache_airflow_job(self, display_name, definition = None, description = None, folder_id = None):
|
451
|
+
return self.core_client.create_apache_airflow_job(workspace_id=self.id, display_name=display_name, description=description,
|
452
|
+
definition=definition, folder_id=folder_id)
|
453
|
+
|
454
|
+
def delete_apache_airflow_job(self, apache_airflow_job_id):
|
455
|
+
return self.core_client.delete_apache_airflow_job(workspace_id=self.id, apache_airflow_job_id=apache_airflow_job_id)
|
456
|
+
|
457
|
+
def get_apache_airflow_job(self, apache_airflow_job_id = None, apache_airflow_job_name = None):
|
458
|
+
return self.core_client.get_apache_airflow_job(workspace_id=self.id, apache_airflow_job_id=apache_airflow_job_id,
|
459
|
+
apache_airflow_job_name=apache_airflow_job_name)
|
460
|
+
|
461
|
+
# get_apache_airflow_job_definition
|
462
|
+
def get_apache_airflow_job_definition(self, apache_airflow_job_id, format = None):
|
463
|
+
return self.core_client.get_apache_airflow_job_definition(workspace_id=self.id, apache_airflow_job_id=apache_airflow_job_id, format=format)
|
464
|
+
|
465
|
+
def list_apache_airflow_jobs(self, with_properties = False):
|
466
|
+
return self.core_client.list_apache_airflow_jobs(workspace_id=self.id, with_properties=with_properties)
|
467
|
+
|
468
|
+
def update_apache_airflow_job(self, apache_airflow_job_id, display_name = None, description = None):
|
469
|
+
return self.core_client.update_apache_airflow_job(workspace_id=self.id, apache_airflow_job_id=apache_airflow_job_id,
|
470
|
+
display_name=display_name, description=description)
|
471
|
+
|
472
|
+
def update_apache_airflow_job_definition(self, apache_airflow_job_id, definition, update_metadata = None):
|
473
|
+
return self.core_client.update_apache_airflow_job_definition(workspace_id=self.id, apache_airflow_job_id=apache_airflow_job_id,
|
474
|
+
definition=definition, update_metadata=update_metadata)
|
475
|
+
|
426
476
|
# copy jobs
|
427
477
|
|
428
478
|
def create_copy_job(self, display_name, definition = None, description = None):
|
@@ -556,6 +606,40 @@ class Workspace:
|
|
556
606
|
return self.core_client.update_data_pipeline_definition(workspace_id=self.id, data_pipeline_id=data_pipeline_id,
|
557
607
|
definition=definition, update_metadata=update_metadata)
|
558
608
|
|
609
|
+
# digital twin builders
|
610
|
+
|
611
|
+
def create_digital_twin_builder(self, display_name, definition = None, description = None, folder_id = None):
|
612
|
+
"""Create a digital twin builder in a workspace"""
|
613
|
+
return self.core_client.create_digital_twin_builder(workspace_id=self.id, display_name=display_name,
|
614
|
+
definition=definition, description=description, folder_id=folder_id)
|
615
|
+
|
616
|
+
def delete_digital_twin_builder(self, digital_twin_builder_id):
|
617
|
+
"""Delete a digital twin builder from a workspace"""
|
618
|
+
return self.core_client.delete_digital_twin_builder(workspace_id=self.id, digital_twin_builder_id=digital_twin_builder_id)
|
619
|
+
|
620
|
+
def get_digital_twin_builder(self, digital_twin_builder_id = None, digital_twin_builder_name = None):
|
621
|
+
"""Get a digital twin builder from a workspace"""
|
622
|
+
return self.core_client.get_digital_twin_builder(workspace_id=self.id, digital_twin_builder_id=digital_twin_builder_id,
|
623
|
+
digital_twin_builder_name=digital_twin_builder_name)
|
624
|
+
|
625
|
+
def get_digital_twin_builder_definition(self, digital_twin_builder_id, format = None):
|
626
|
+
"""Get the definition of a digital twin builder from a workspace"""
|
627
|
+
return self.core_client.get_digital_twin_builder_definition(workspace_id=self.id, digital_twin_builder_id=digital_twin_builder_id, format=format)
|
628
|
+
|
629
|
+
def list_digital_twin_builders(self, with_properties = False):
|
630
|
+
"""List digital twin builders in a workspace"""
|
631
|
+
return self.core_client.list_digital_twin_builders(workspace_id=self.id, with_properties=with_properties)
|
632
|
+
|
633
|
+
def update_digital_twin_builder(self, digital_twin_builder_id, display_name = None, description = None):
|
634
|
+
"""Update a digital twin builder in a workspace"""
|
635
|
+
return self.core_client.update_digital_twin_builder(workspace_id=self.id, digital_twin_builder_id=digital_twin_builder_id,
|
636
|
+
display_name=display_name, description=description)
|
637
|
+
|
638
|
+
def update_digital_twin_builder_definition(self, digital_twin_builder_id, definition, update_metadata = None):
|
639
|
+
"""Update the definition of a digital twin builder in a workspace"""
|
640
|
+
return self.core_client.update_digital_twin_builder_definition(workspace_id=self.id, digital_twin_builder_id=digital_twin_builder_id,
|
641
|
+
definition=definition, update_metadata=update_metadata)
|
642
|
+
|
559
643
|
# environments
|
560
644
|
|
561
645
|
def list_environments(self, with_properties = False):
|
@@ -625,10 +709,10 @@ class Workspace:
|
|
625
709
|
"""List eventhouses in a workspace"""
|
626
710
|
return self.core_client.list_eventhouses(workspace_id=self.id, with_properties=with_properties)
|
627
711
|
|
628
|
-
def create_eventhouse(self, display_name, description = None):
|
712
|
+
def create_eventhouse(self, display_name, definition = None, creation_payload = None, description = None):
|
629
713
|
"""Create an eventhouse in a workspace"""
|
630
|
-
return self.core_client.create_eventhouse(workspace_id=self.id, display_name=display_name, description=description)
|
631
|
-
|
714
|
+
return self.core_client.create_eventhouse(workspace_id=self.id, display_name=display_name, description=description, definition=definition, creation_payload=creation_payload)
|
715
|
+
|
632
716
|
def get_eventhouse(self, eventhouse_id = None, eventhouse_name = None):
|
633
717
|
"""Get an eventhouse from a workspace"""
|
634
718
|
return self.core_client.get_eventhouse(workspace_id=self.id, eventhouse_id=eventhouse_id,
|
@@ -655,10 +739,11 @@ class Workspace:
|
|
655
739
|
# eventstreams
|
656
740
|
|
657
741
|
|
658
|
-
def create_eventstream(self, display_name, description = None):
|
742
|
+
def create_eventstream(self, display_name, description = None, definition = None, creation_payload = None):
|
659
743
|
"""Create an eventstream in a workspace"""
|
660
|
-
return self.core_client.create_eventstream(workspace_id=self.id, display_name=display_name,
|
661
|
-
|
744
|
+
return self.core_client.create_eventstream(workspace_id=self.id, display_name=display_name,
|
745
|
+
description=description, definition=definition, creation_payload=creation_payload)
|
746
|
+
|
662
747
|
def delete_eventstream(self, eventstream_id):
|
663
748
|
"""Delete an eventstream from a workspace"""
|
664
749
|
return self.core_client.delete_eventstream(workspace_id=self.id, eventstream_id=eventstream_id)
|
@@ -861,6 +946,62 @@ class Workspace:
|
|
861
946
|
return self.core_client.update_kql_queryset_definition(workspace_id=self.id, kql_queryset_id=kql_queryset_id,
|
862
947
|
definition=definition, update_metadata=update_metadata)
|
863
948
|
|
949
|
+
# mirrored Azure databricks catalog
|
950
|
+
def create_mirrored_azure_databricks_catalog(self, display_name, description = None, definition = None):
|
951
|
+
"""Create a mirrored Azure Databricks catalog in a workspace"""
|
952
|
+
return self.core_client.create_mirrored_azure_databricks_catalog(workspace_id=self.id, display_name=display_name,
|
953
|
+
description=description, definition=definition)
|
954
|
+
|
955
|
+
def delete_mirrored_azure_databricks_catalog(self, mirrored_azure_databricks_catalog_id):
|
956
|
+
"""Delete a mirrored Azure Databricks catalog from a workspace"""
|
957
|
+
return self.core_client.delete_mirrored_azure_databricks_catalog(workspace_id=self.id,
|
958
|
+
mirrored_azure_databricks_catalog_id=mirrored_azure_databricks_catalog_id)
|
959
|
+
def get_mirrored_azure_databricks_catalog(self, mirrored_azure_databricks_catalog_id = None,
|
960
|
+
mirrored_azure_databricks_catalog_name = None):
|
961
|
+
"""Get a mirrored Azure Databricks catalog from a workspace"""
|
962
|
+
return self.core_client.get_mirrored_azure_databricks_catalog(workspace_id=self.id,
|
963
|
+
mirrored_azure_databricks_catalog_id=mirrored_azure_databricks_catalog_id,
|
964
|
+
mirrored_azure_databricks_catalog_name=mirrored_azure_databricks_catalog_name)
|
965
|
+
def get_mirrored_azure_databricks_catalog_definition(self, mirrored_azure_databricks_catalog_id, format = None):
|
966
|
+
"""Get the definition of a mirrored Azure Databricks catalog from a workspace"""
|
967
|
+
return self.core_client.get_mirrored_azure_databricks_catalog_definition(workspace_id=self.id,
|
968
|
+
mirrored_azure_databricks_catalog_id=mirrored_azure_databricks_catalog_id,
|
969
|
+
format=format)
|
970
|
+
def list_mirrored_azure_databricks_catalogs(self, with_properties = False):
|
971
|
+
"""List mirrored Azure Databricks catalogs in a workspace"""
|
972
|
+
return self.core_client.list_mirrored_azure_databricks_catalogs(workspace_id=self.id, with_properties=with_properties)
|
973
|
+
|
974
|
+
def update_mirrored_azure_databricks_catalog(self, mirrored_azure_databricks_catalog_id, display_name = None,
|
975
|
+
description = None):
|
976
|
+
"""Update a mirrored Azure Databricks catalog in a workspace"""
|
977
|
+
return self.core_client.update_mirrored_azure_databricks_catalog(workspace_id=self.id,
|
978
|
+
mirrored_azure_databricks_catalog_id=mirrored_azure_databricks_catalog_id,
|
979
|
+
display_name=display_name, description=description)
|
980
|
+
def update_mirrored_azure_databricks_catalog_definition(self, mirrored_azure_databricks_catalog_id, definition,
|
981
|
+
update_metadata = None):
|
982
|
+
"""Update the definition of a mirrored Azure Databricks catalog in a workspace"""
|
983
|
+
return self.core_client.update_mirrored_azure_databricks_catalog_definition(workspace_id=self.id,
|
984
|
+
mirrored_azure_databricks_catalog_id=mirrored_azure_databricks_catalog_id,
|
985
|
+
definition=definition, update_metadata=update_metadata)
|
986
|
+
def refresh_mirrored_azure_databricks_catalog_metadata(self, mirrored_azure_databricks_catalog_id):
|
987
|
+
"""Refresh the metadata of a mirrored Azure Databricks catalog in a workspace"""
|
988
|
+
return self.core_client.refresh_mirrored_azure_databricks_catalog_metadata(workspace_id=self.id,
|
989
|
+
mirrored_azure_databricks_catalog_id=mirrored_azure_databricks_catalog_id)
|
990
|
+
|
991
|
+
def discover_mirrored_azure_databricks_catalogs(self, databricks_workspace_connection_id, max_results = None):
|
992
|
+
return self.core_client.discover_mirrored_azure_databricks_catalogs(workspace_id=self.id, databricks_workspace_connection_id=databricks_workspace_connection_id,
|
993
|
+
max_results=max_results)
|
994
|
+
|
995
|
+
def discover_mirrored_azure_databricks_catalog_schemas(self, catalog_name, databricks_workspace_connection_id, max_results = None):
|
996
|
+
return self.core_client.discover_mirrored_azure_databricks_catalog_schemas(workspace_id=self.id, catalog_name=catalog_name,
|
997
|
+
databricks_workspace_connection_id=databricks_workspace_connection_id,
|
998
|
+
max_results=max_results)
|
999
|
+
def discover_mirrored_azure_databricks_catalog_tables(self, catalog_name, schema_name, databricks_workspace_connection_id, max_results = None):
|
1000
|
+
return self.core_client.discover_mirrored_azure_databricks_catalog_tables(workspace_id=self.id, catalog_name=catalog_name,
|
1001
|
+
schema_name=schema_name,
|
1002
|
+
databricks_workspace_connection_id=databricks_workspace_connection_id,
|
1003
|
+
max_results=max_results)
|
1004
|
+
|
864
1005
|
# lakehouses
|
865
1006
|
def run_on_demand_table_maintenance(self, lakehouse_id, execution_data,
|
866
1007
|
job_type = "TableMaintenance", wait_for_completion = True):
|
@@ -1260,6 +1401,12 @@ class Workspace:
|
|
1260
1401
|
"""Get a livy session for a spark job definition from a workspace"""
|
1261
1402
|
return self.core_client.get_spark_job_definition_livy_session(workspace_id=self.id, spark_job_definition_id=spark_job_definition_id, livy_id=livy_id)
|
1262
1403
|
|
1404
|
+
# sql endpoint
|
1405
|
+
def refresh_sql_endpoint_metadata(self, sql_endpoint_id, preview = True, timeout = None, wait_for_completion = False):
|
1406
|
+
"""Refresh the metadata of a sql endpoint in a workspace"""
|
1407
|
+
return self.core_client.refresh_sql_endpoint_metadata(workspace_id=self.id, sql_endpoint_id=sql_endpoint_id,
|
1408
|
+
preview=preview, timeout=timeout, wait_for_completion=wait_for_completion)
|
1409
|
+
|
1263
1410
|
# sql databases
|
1264
1411
|
|
1265
1412
|
def create_sql_database(self, display_name, description = None):
|
@@ -1305,6 +1452,29 @@ class Workspace:
|
|
1305
1452
|
"""Update a warehouse in a workspace"""
|
1306
1453
|
return self.core_client.update_warehouse(workspace_id=self.id, warehouse_id=warehouse_id, display_name=display_name, description=description)
|
1307
1454
|
|
1455
|
+
def create_warehouse_snapshot(self, display_name, creation_payload, description = None, folder_id = None):
|
1456
|
+
return self.core_client.create_warehouse_snapshot(workspace_id=self.id, display_name=display_name,
|
1457
|
+
creation_payload=creation_payload, description=description,
|
1458
|
+
folder_id=folder_id)
|
1459
|
+
|
1460
|
+
def delete_warehouse_snapshot(self, warehouse_snapshot_id):
|
1461
|
+
"""Delete a warehouse snapshot from a workspace"""
|
1462
|
+
return self.core_client.delete_warehouse_snapshot(workspace_id=self.id, warehouse_snapshot_id=warehouse_snapshot_id)
|
1463
|
+
|
1464
|
+
def get_warehouse_snapshot(self, warehouse_snapshot_id = None, warehouse_snapshot_name = None):
|
1465
|
+
"""Get a warehouse snapshot from a workspace"""
|
1466
|
+
return self.core_client.get_warehouse_snapshot(workspace_id=self.id, warehouse_snapshot_id=warehouse_snapshot_id,
|
1467
|
+
warehouse_snapshot_name=warehouse_snapshot_name)
|
1468
|
+
|
1469
|
+
def list_warehouse_snapshots(self, with_properties = False):
|
1470
|
+
"""List warehouse snapshots in a workspace"""
|
1471
|
+
return self.core_client.list_warehouse_snapshots(workspace_id=self.id, with_properties=with_properties)
|
1472
|
+
|
1473
|
+
def update_warehouse_snapshot(self, warehouse_snapshot_id, display_name = None, description = None):
|
1474
|
+
"""Update a warehouse snapshot in a workspace"""
|
1475
|
+
return self.core_client.update_warehouse_snapshot(workspace_id=self.id, warehouse_snapshot_id=warehouse_snapshot_id,
|
1476
|
+
display_name=display_name, description=description)
|
1477
|
+
|
1308
1478
|
# variable libraries
|
1309
1479
|
|
1310
1480
|
def create_variable_library(self, display_name, definition = None, description = None):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: msfabricpysdkcore
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.8
|
4
4
|
Summary: A Python SDK for Microsoft Fabric
|
5
5
|
Author: Andreas Rederer
|
6
6
|
Project-URL: Homepage, https://github.com/DaSenf1860/ms-fabric-sdk-core
|
@@ -18,7 +18,7 @@ Dynamic: requires-dist
|
|
18
18
|
|
19
19
|
# Python SDK for Microsoft Fabric
|
20
20
|
|
21
|
-
This is a Python SDK for Microsoft Fabric. It is a wrapper around the REST APIs (v1) of Fabric*. It supports all Fabric REST APIs as well as Azure Resource Management APIs for Fabric (as of
|
21
|
+
This is a Python SDK for Microsoft Fabric. It is a wrapper around the REST APIs (v1) of Fabric*. It supports all Fabric REST APIs as well as Azure Resource Management APIs for Fabric (as of June 25, 2025).
|
22
22
|
|
23
23
|

|
24
24
|
|
@@ -460,6 +460,8 @@ data_share_ids = [ds['id'] for ds in data_share_list]
|
|
460
460
|
|
461
461
|
response_code = fc.revoke_external_data_share(workspace_id, item_id, data_share['id'])
|
462
462
|
|
463
|
+
# Delete
|
464
|
+
response_code = fc.delete_external_data_share(workspace_id, item_id, data_share['id'])
|
463
465
|
```
|
464
466
|
|
465
467
|
### External Data Shares Recipient
|
@@ -0,0 +1,78 @@
|
|
1
|
+
msfabricpysdkcore/__init__.py,sha256=ObRW5Q8IMqrvA6VH6zXSv3n01AzRCGjn5RojJXAR6VE,208
|
2
|
+
msfabricpysdkcore/admin_item.py,sha256=9L09Kb7kn7JW0bqVu1qPOMT6oHLduX4Q5_qhVJZTLxQ,3290
|
3
|
+
msfabricpysdkcore/admin_workspace.py,sha256=umNnIF8sf5Y8BDgfQdfG6sOZrQQc7RJINL9j8DPnm3c,3180
|
4
|
+
msfabricpysdkcore/adminapi.py,sha256=ldne1ML_t_o42WGwz9UNJM_qEaT9kjtmypexY3ECpZE,39930
|
5
|
+
msfabricpysdkcore/auth.py,sha256=Y9YUDqoArvkD7rLnbQvNBnCXqHJtw6PDRUHMx0CVMT0,4330
|
6
|
+
msfabricpysdkcore/capacity.py,sha256=Q_2-XrZtdf9F67fY0qU3D0ocEOGQq4KtIXAv9dXjQhI,1761
|
7
|
+
msfabricpysdkcore/client.py,sha256=KpHREbfzQRRighyJzyES3COZP3raK0C1-WhxGd07LHU,7890
|
8
|
+
msfabricpysdkcore/coreapi.py,sha256=iPeOInGw4XT7TW5ChT5al-dJc3vBhidiBf9MJFclE24,302260
|
9
|
+
msfabricpysdkcore/deployment_pipeline.py,sha256=0yTLwSJZDSLF5LU882GuTs-_KZkMDP_k5l_GAV1nf-Y,10156
|
10
|
+
msfabricpysdkcore/domain.py,sha256=MAv7R64waQgI3OF1f5hmMdH98pJIb-BPTCZSvPZDzgU,7061
|
11
|
+
msfabricpysdkcore/environment.py,sha256=4k2Le1mAQIrfcpNc3n1DbgdCzAldGTSTCbiDQGk0DlA,2784
|
12
|
+
msfabricpysdkcore/eventstream.py,sha256=e9u16sVARI0yUktzY5oaj3R-QvJXGpP6lPH-TFzbVvU,4517
|
13
|
+
msfabricpysdkcore/fabric_azure_capacity.py,sha256=7JxMp9weiKG_mDjlRK-88oIXr0kdG0pzv-Ouycf3fus,2808
|
14
|
+
msfabricpysdkcore/fabric_azure_client.py,sha256=I7Z0Y8Xy_esQcPaXgPL7EAkQmoQkAklJO4hxk_90dno,10722
|
15
|
+
msfabricpysdkcore/folder.py,sha256=-nop7KsVr9Nha_tY1nlOwkpjzVd6QfaR2nZG7mgLcvU,2782
|
16
|
+
msfabricpysdkcore/item.py,sha256=75RphdDpMNMbF0Ajz35wkrpzmuLdoKeZiu671A-mw1E,9405
|
17
|
+
msfabricpysdkcore/job_instance.py,sha256=rtZp-OpuzfdMiQyuQLum38lgcfSZJTr3s9sECZglcWg,2389
|
18
|
+
msfabricpysdkcore/lakehouse.py,sha256=iYjj4EUJ9ylVw6f0BAguuFeHRxwSAIasFqbTlRIse7A,2081
|
19
|
+
msfabricpysdkcore/long_running_operation.py,sha256=XTlsueSZKVFICxhx99geEQ6btZFlFb8-lssigmQ9c6Y,2133
|
20
|
+
msfabricpysdkcore/onelakeshortcut.py,sha256=H02wR6Z86qTEJOwVRMKz1Ou3K88Y9pfJa91vizjprvo,1661
|
21
|
+
msfabricpysdkcore/otheritems.py,sha256=CXKobc2lqup3KOlqRp5yxYBM7Wvb0BLDe9F5iwEv1fc,26255
|
22
|
+
msfabricpysdkcore/spark_custom_pool.py,sha256=YsEULaQG-FO507aPIb-4kk93ZWBmDZj6fbOEHYoyxHE,3188
|
23
|
+
msfabricpysdkcore/workspace.py,sha256=iAIGzDoxjXZBs2YmMCtfP9ditbJiTtUM9liG1QFf9yI,93047
|
24
|
+
msfabricpysdkcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
+
msfabricpysdkcore/tests/test_admin_apis.py,sha256=772WGrjmz5gVGBBWo_qkZD1IT9M7qfOO4J1a8B0udnE,6852
|
26
|
+
msfabricpysdkcore/tests/test_admin_tags.py,sha256=DRfoRJ7TUn6BcJdeV-xcEUifu8-_LGiM_9jmWEqRpqs,1564
|
27
|
+
msfabricpysdkcore/tests/test_apache_airflow_job.py,sha256=MLw6P99blS_9nBg9zE4ADl7bpDCUJkO7WTStH48Qt74,2819
|
28
|
+
msfabricpysdkcore/tests/test_connection.py,sha256=jmwvRwfp81-a3eHjC_rBFgBJJihZ63qXVdfilTaxHYw,4491
|
29
|
+
msfabricpysdkcore/tests/test_copy_jobs.py,sha256=BDS1OQvHq3iZzi9EpdhyZXlHyqw91no3PcpqDpL_5Ws,2415
|
30
|
+
msfabricpysdkcore/tests/test_dataflows.py,sha256=JjJVI-MQu4aQxEPxyOX9rJFw1-C2ncbSJq9mqfxuoNw,2416
|
31
|
+
msfabricpysdkcore/tests/test_datapipelines.py,sha256=Z9ftGVkpvYe3ZSX5yti_UHUa5SzKToKVsT2Inopw5Cc,2626
|
32
|
+
msfabricpysdkcore/tests/test_deployment_pipelinev2.py,sha256=QxydDk-mwmDFX9Iof1dFJn_fnQ5g6okKgjZXow4WIIo,5641
|
33
|
+
msfabricpysdkcore/tests/test_digital_twin_builder.py,sha256=t6PugShbtgs3KpMkwUMZl1JVcH9cYCCYIt8gDHYMzDc,2904
|
34
|
+
msfabricpysdkcore/tests/test_domains.py,sha256=pG-06uj8r0JOQ_AtuBsFQ_cVudaDAayW36UqWHEHMl0,4566
|
35
|
+
msfabricpysdkcore/tests/test_environments.py,sha256=8EoAgj1ohXXcMN1iKxKX9wlHPo6MBok7UWDYEafxOY8,5470
|
36
|
+
msfabricpysdkcore/tests/test_evenstreams.py,sha256=zOyoztpA_SHiuSU-cyilcccD7p88ssU_8k6uxC8ACqo,2566
|
37
|
+
msfabricpysdkcore/tests/test_eventhouses.py,sha256=ojQZWwtHwTNItZsbjLxQvkO6ulYgod7c3035gGGojxw,2699
|
38
|
+
msfabricpysdkcore/tests/test_eventstream_topology.py,sha256=V69pVWBsiyGCW2WBmD_AXOvVszbk4oDKw7u2pa09IwI,3112
|
39
|
+
msfabricpysdkcore/tests/test_external_data_shares.py,sha256=_YpoE1MM3lzUhhUWRcLeE7_010SGr-nRADnvJCE9syE,1550
|
40
|
+
msfabricpysdkcore/tests/test_fabric_azure_client.py,sha256=MrzwS2GKPC7qtvRsg6iLc9Zj63P146_g9AqIdFmhY4g,3100
|
41
|
+
msfabricpysdkcore/tests/test_folders.py,sha256=5CYpab71KBnnU52J6i-gJjfZZ8yA7Zuauz7WZL8AC84,1967
|
42
|
+
msfabricpysdkcore/tests/test_gateways.py,sha256=cZY70r2sv1LlOpzQiMu91ouMqnBiBjMGzNUPCbRqlBY,3686
|
43
|
+
msfabricpysdkcore/tests/test_git.py,sha256=nHx7db8mjvqUsw5yQcs8yEHs4_lY9L4xCmn_6vCJ8IA,2567
|
44
|
+
msfabricpysdkcore/tests/test_graphqlapi.py,sha256=NGAIfh0GjAtgKybTNCgHa2Fs2AwR34_pP6QGAgJ7Wpw,1633
|
45
|
+
msfabricpysdkcore/tests/test_items.py,sha256=8NVIY_4GdxbufVwVrNrJubZmx0Zobc5PCqgIMKnPyaY,4546
|
46
|
+
msfabricpysdkcore/tests/test_jobs.py,sha256=d3tZwAiy6gStT9sk3hQH0HI01N90SQfn6hZsRItoeLA,4075
|
47
|
+
msfabricpysdkcore/tests/test_kql_dashboards.py,sha256=cbCYfRCN7HuQT7_SbAI1DOFn0GZGWt3HoRI62fYsZOg,2367
|
48
|
+
msfabricpysdkcore/tests/test_kql_queryset.py,sha256=mBvukkqaCskIKdYr92BywuuQiAWqRVsJidniXB32k3g,2451
|
49
|
+
msfabricpysdkcore/tests/test_kqldatabases.py,sha256=b58pPoP1zu2QPh9C8L7xRfYU7TMicTOEOmA8x2SN6oc,2374
|
50
|
+
msfabricpysdkcore/tests/test_lakehouse.py,sha256=-B9pBenANWLtdITU4p7cRT7jfMLVlQObUfKCYST_cHc,3670
|
51
|
+
msfabricpysdkcore/tests/test_managed_private_endpoints.py,sha256=1Hj3WgnrQCMYaHS7CuAchtvzicqd_O9aAUlP1bolV-c,3031
|
52
|
+
msfabricpysdkcore/tests/test_mirrored_azuredatabricks_catalog.py,sha256=1UVRDUGpHdOQmnouOmLo5dtAP7_n8qkCpkUTg-vdo5E,4716
|
53
|
+
msfabricpysdkcore/tests/test_mirroreddatabases.py,sha256=b0KjReoJ9U3tTbtmhtV2Vk9zatBR10cmpOg4Omuj5EU,3686
|
54
|
+
msfabricpysdkcore/tests/test_ml_experiments.py,sha256=fbNDki8TCtkWB0y3jNoxy92iNkkvX5kRigvA1Ummus4,1808
|
55
|
+
msfabricpysdkcore/tests/test_ml_models.py,sha256=Hv3yHck56H2IMbwUT08_64_mh-xZvyiIV-vpFvL4Oe4,1636
|
56
|
+
msfabricpysdkcore/tests/test_mounted_adf.py,sha256=XArGgd88RQytr-ecdhmVJyT05xlO1yNFRL0Xbr-cmqs,3409
|
57
|
+
msfabricpysdkcore/tests/test_notebooks.py,sha256=vzdPA3LqGx4niXxIWhWI2QnFTSK8Sq4IikG0MJNd4HY,2331
|
58
|
+
msfabricpysdkcore/tests/test_one_lake_data_access_security.py,sha256=M_kq3PPEotX6yaurzNe9oiTLqXjGb6AH__4hTpSq6G8,2297
|
59
|
+
msfabricpysdkcore/tests/test_other_items.py,sha256=-KsNZc9wa3Uc5Mr4PLYSs8pJOqKZUN09_ZJ6ufXcCdk,1774
|
60
|
+
msfabricpysdkcore/tests/test_reflex.py,sha256=vLbQCdXMdtNZZ1oV1CVMJMa1v8Pa3NWNK7irfL5i9hw,2021
|
61
|
+
msfabricpysdkcore/tests/test_reports.py,sha256=Wu0VqArrUxuCs6l1zCcNyb8TGjrdzg-yGiRjXjThjTM,2093
|
62
|
+
msfabricpysdkcore/tests/test_semantic_model.py,sha256=aeuVUnasB5TeMEIt5oR5E-d4j0eu77r0B64J6pN9gy8,2477
|
63
|
+
msfabricpysdkcore/tests/test_shortcuts.py,sha256=4_tpSHLVh42KrJPCx4Qc0IHtUVygX3GcdjdK3WY0QFo,2620
|
64
|
+
msfabricpysdkcore/tests/test_spark.py,sha256=vN31xhSQQ0ZwJ3GJBEcRQ2L-VzaCAR00XTlXxQ2U5NA,3546
|
65
|
+
msfabricpysdkcore/tests/test_sparkjobdefinition.py,sha256=HbLqM3MrOPkaBaKKF_l1kCRnlQYjI_1gUGRH-6ehN4A,2838
|
66
|
+
msfabricpysdkcore/tests/test_sql_endpoint.py,sha256=_yQpBfXk8brs3M2FUmvDskSMFUjjTcG8_087_noRXxg,754
|
67
|
+
msfabricpysdkcore/tests/test_sqldatabases.py,sha256=aFH-JLHKASGiIqz14wGpHfBMp_5OMZ3x_Upd_O0A2f0,1642
|
68
|
+
msfabricpysdkcore/tests/test_tags.py,sha256=M28StU18QJorbIVylue-zKOUbxrufu0VFo1hzwFIfc8,963
|
69
|
+
msfabricpysdkcore/tests/test_variable_libary.py,sha256=UbcfS3N24WBjDMr3fJOdYx1hC78dlYzdqUwr1_D6I8A,2759
|
70
|
+
msfabricpysdkcore/tests/test_warehouses.py,sha256=zrgPI_fYajwDDRfEEyEUNH7TpP4rtlRK-_q4-fmUJTE,1813
|
71
|
+
msfabricpysdkcore/tests/test_workspaces_capacities.py,sha256=6vU3hpoC4cIrXwEAvh7k1ARA4gwKSIVgoIXxSEUNHls,6739
|
72
|
+
msfabricpysdkcore/util/__init__.py,sha256=p-1dC4AurfKdIUppNVlRCIcmwHBTURqfgIwxcie3fEA,50
|
73
|
+
msfabricpysdkcore/util/logger.py,sha256=XXdeaqI-BhXZgacChKrWP88TPU4FTWvS8L0YWjCT54A,1166
|
74
|
+
msfabricpysdkcore-0.2.8.dist-info/licenses/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
|
75
|
+
msfabricpysdkcore-0.2.8.dist-info/METADATA,sha256=KXCP4ipUoXu122T_nEGuX8AK-zQ5lNGPlxXMS8U4BB0,39852
|
76
|
+
msfabricpysdkcore-0.2.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
77
|
+
msfabricpysdkcore-0.2.8.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
|
78
|
+
msfabricpysdkcore-0.2.8.dist-info/RECORD,,
|
@@ -1,63 +0,0 @@
|
|
1
|
-
import unittest
|
2
|
-
from msfabricpysdkcore.coreapi import FabricClientCore
|
3
|
-
from dotenv import load_dotenv
|
4
|
-
|
5
|
-
load_dotenv()
|
6
|
-
|
7
|
-
|
8
|
-
class TestFabricClientCore(unittest.TestCase):
|
9
|
-
|
10
|
-
def __init__(self, *args, **kwargs):
|
11
|
-
super(TestFabricClientCore, self).__init__(*args, **kwargs)
|
12
|
-
self.fc = FabricClientCore()
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
def test_spark_workspace_custom_pools(self):
|
17
|
-
fc = self.fc
|
18
|
-
|
19
|
-
dep_pipes = fc.list_deployment_pipelines()
|
20
|
-
|
21
|
-
self.assertGreater(len(dep_pipes), 0)
|
22
|
-
|
23
|
-
self.assertIn("sdkpipe", [pipe.display_name for pipe in dep_pipes])
|
24
|
-
|
25
|
-
for pipe in dep_pipes:
|
26
|
-
if pipe.display_name == 'sdkpipe':
|
27
|
-
pipe_id = pipe.id
|
28
|
-
break
|
29
|
-
|
30
|
-
pipe = fc.get_deployment_pipeline(pipe_id)
|
31
|
-
|
32
|
-
self.assertEqual(pipe.display_name, 'sdkpipe')
|
33
|
-
self.assertEqual(pipe.id, pipe_id)
|
34
|
-
|
35
|
-
stages = fc.list_deployment_pipeline_stages(pipe_id)
|
36
|
-
|
37
|
-
self.assertGreater(len(stages), 0)
|
38
|
-
names = [stage.display_name for stage in stages]
|
39
|
-
self.assertIn("Development", names)
|
40
|
-
self.assertIn("Production", names)
|
41
|
-
|
42
|
-
dev_stage = [stage for stage in stages if stage.display_name == "Development"][0]
|
43
|
-
prod_stage = [stage for stage in stages if stage.display_name == "Production"][0]
|
44
|
-
|
45
|
-
items = fc.list_deployment_pipeline_stages_items(deployment_pipeline_id=pipe_id, stage_id=dev_stage.id)
|
46
|
-
|
47
|
-
self.assertGreater(len(items), 0)
|
48
|
-
self.assertIn("cicdlakehouse", [item["itemDisplayName"] for item in items])
|
49
|
-
|
50
|
-
items = [item for item in dev_stage.list_items() if item["itemDisplayName"] == 'cicdlakehouse']
|
51
|
-
item = items[0]
|
52
|
-
item = {"sourceItemId": item["itemId"],
|
53
|
-
"itemType": item["itemType"]}
|
54
|
-
items = [item]
|
55
|
-
|
56
|
-
response = fc.deploy_stage_content(deployment_pipeline_id=pipe_id, source_stage_id=dev_stage.id,target_stage_id=prod_stage.id, items=items)
|
57
|
-
|
58
|
-
self.assertEqual(response["status"], "Succeeded")
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
@@ -1,56 +0,0 @@
|
|
1
|
-
import unittest
|
2
|
-
from datetime import datetime
|
3
|
-
from dotenv import load_dotenv
|
4
|
-
from time import sleep
|
5
|
-
from msfabricpysdkcore.coreapi import FabricClientCore
|
6
|
-
|
7
|
-
load_dotenv()
|
8
|
-
|
9
|
-
class TestFabricClientCore(unittest.TestCase):
|
10
|
-
|
11
|
-
def __init__(self, *args, **kwargs):
|
12
|
-
super(TestFabricClientCore, self).__init__(*args, **kwargs)
|
13
|
-
#load_dotenv()
|
14
|
-
self.fc = FabricClientCore()
|
15
|
-
|
16
|
-
datetime_str = datetime.now().strftime("%Y%m%d%H%M%S")
|
17
|
-
self.item_name = "testitem" + datetime_str
|
18
|
-
self.item_type = "Notebook"
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
def test_eventhouses(self):
|
23
|
-
|
24
|
-
fc = self.fc
|
25
|
-
workspace_id = '63aa9e13-4912-4abe-9156-8a56e565b7a3'
|
26
|
-
datetime_str = datetime.now().strftime("%Y%m%d%H%M%S")
|
27
|
-
eventhouse_name = "evh" + datetime_str
|
28
|
-
eventhouse1 = fc.create_eventhouse(workspace_id, display_name=eventhouse_name)
|
29
|
-
self.assertEqual(eventhouse1.display_name, eventhouse_name)
|
30
|
-
|
31
|
-
eventhouses = fc.list_eventhouses(workspace_id)
|
32
|
-
eventhouse_names = [eh.display_name for eh in eventhouses]
|
33
|
-
self.assertGreater(len(eventhouses), 0)
|
34
|
-
self.assertIn(eventhouse_name, eventhouse_names)
|
35
|
-
|
36
|
-
eh = fc.get_eventhouse(workspace_id, eventhouse_name=eventhouse_name)
|
37
|
-
self.assertIsNotNone(eh.id)
|
38
|
-
self.assertEqual(eh.display_name, eventhouse_name)
|
39
|
-
new_display_name = eventhouse_name + "2"
|
40
|
-
eh2 = fc.update_eventhouse(workspace_id, eh.id, display_name=new_display_name, return_item=True)
|
41
|
-
|
42
|
-
definition = fc.get_eventhouse_definition(workspace_id, eventhouse_id=eh.id)
|
43
|
-
|
44
|
-
self.assertIn("definition", definition)
|
45
|
-
self.assertIn("parts", definition["definition"])
|
46
|
-
self.assertGreaterEqual(len(definition["definition"]["parts"]), 2)
|
47
|
-
|
48
|
-
response = fc.update_eventhouse_definition(workspace_id, eventhouse_id=eh.id, definition=definition["definition"])
|
49
|
-
self.assertIn(response.status_code, [200, 202])
|
50
|
-
|
51
|
-
eh = fc.get_eventhouse(workspace_id, eventhouse_id=eh.id)
|
52
|
-
self.assertEqual(eh.display_name, new_display_name)
|
53
|
-
self.assertEqual(eh.id, eh2.id)
|
54
|
-
|
55
|
-
status_code = fc.delete_eventhouse(workspace_id, eh.id)
|
56
|
-
self.assertEqual(status_code, 200)
|
@@ -1,75 +0,0 @@
|
|
1
|
-
msfabricpysdkcore/__init__.py,sha256=ObRW5Q8IMqrvA6VH6zXSv3n01AzRCGjn5RojJXAR6VE,208
|
2
|
-
msfabricpysdkcore/admin_item.py,sha256=9L09Kb7kn7JW0bqVu1qPOMT6oHLduX4Q5_qhVJZTLxQ,3290
|
3
|
-
msfabricpysdkcore/admin_workspace.py,sha256=umNnIF8sf5Y8BDgfQdfG6sOZrQQc7RJINL9j8DPnm3c,3180
|
4
|
-
msfabricpysdkcore/adminapi.py,sha256=ldne1ML_t_o42WGwz9UNJM_qEaT9kjtmypexY3ECpZE,39930
|
5
|
-
msfabricpysdkcore/auth.py,sha256=Y9YUDqoArvkD7rLnbQvNBnCXqHJtw6PDRUHMx0CVMT0,4330
|
6
|
-
msfabricpysdkcore/capacity.py,sha256=Q_2-XrZtdf9F67fY0qU3D0ocEOGQq4KtIXAv9dXjQhI,1761
|
7
|
-
msfabricpysdkcore/client.py,sha256=KpHREbfzQRRighyJzyES3COZP3raK0C1-WhxGd07LHU,7890
|
8
|
-
msfabricpysdkcore/coreapi.py,sha256=hf6NZJL0E0FYALWQGrAdlAMLoAqk0n8mImh-uUm5neY,258047
|
9
|
-
msfabricpysdkcore/deployment_pipeline.py,sha256=0yTLwSJZDSLF5LU882GuTs-_KZkMDP_k5l_GAV1nf-Y,10156
|
10
|
-
msfabricpysdkcore/domain.py,sha256=MAv7R64waQgI3OF1f5hmMdH98pJIb-BPTCZSvPZDzgU,7061
|
11
|
-
msfabricpysdkcore/environment.py,sha256=4k2Le1mAQIrfcpNc3n1DbgdCzAldGTSTCbiDQGk0DlA,2784
|
12
|
-
msfabricpysdkcore/eventstream.py,sha256=e9u16sVARI0yUktzY5oaj3R-QvJXGpP6lPH-TFzbVvU,4517
|
13
|
-
msfabricpysdkcore/fabric_azure_capacity.py,sha256=7JxMp9weiKG_mDjlRK-88oIXr0kdG0pzv-Ouycf3fus,2808
|
14
|
-
msfabricpysdkcore/fabric_azure_client.py,sha256=I7Z0Y8Xy_esQcPaXgPL7EAkQmoQkAklJO4hxk_90dno,10722
|
15
|
-
msfabricpysdkcore/folder.py,sha256=-nop7KsVr9Nha_tY1nlOwkpjzVd6QfaR2nZG7mgLcvU,2782
|
16
|
-
msfabricpysdkcore/item.py,sha256=75RphdDpMNMbF0Ajz35wkrpzmuLdoKeZiu671A-mw1E,9405
|
17
|
-
msfabricpysdkcore/job_instance.py,sha256=rtZp-OpuzfdMiQyuQLum38lgcfSZJTr3s9sECZglcWg,2389
|
18
|
-
msfabricpysdkcore/lakehouse.py,sha256=iYjj4EUJ9ylVw6f0BAguuFeHRxwSAIasFqbTlRIse7A,2081
|
19
|
-
msfabricpysdkcore/long_running_operation.py,sha256=XTlsueSZKVFICxhx99geEQ6btZFlFb8-lssigmQ9c6Y,2133
|
20
|
-
msfabricpysdkcore/onelakeshortcut.py,sha256=H02wR6Z86qTEJOwVRMKz1Ou3K88Y9pfJa91vizjprvo,1661
|
21
|
-
msfabricpysdkcore/otheritems.py,sha256=Kf-ccP9fuAGdIZE6jPX7MACfudqlNQLhcpNy8nH6T_I,22233
|
22
|
-
msfabricpysdkcore/spark_custom_pool.py,sha256=YsEULaQG-FO507aPIb-4kk93ZWBmDZj6fbOEHYoyxHE,3188
|
23
|
-
msfabricpysdkcore/workspace.py,sha256=gXtbZg7PMcfhv10oJaUlxj6Bq7gfDq-gTntRVMPfg5g,78743
|
24
|
-
msfabricpysdkcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
-
msfabricpysdkcore/tests/test_admin_apis.py,sha256=J3LmrQkGtgBcVf7ScmuNDvpLSJjMAO3sXKkmowF_HNk,6852
|
26
|
-
msfabricpysdkcore/tests/test_admin_tags.py,sha256=DRfoRJ7TUn6BcJdeV-xcEUifu8-_LGiM_9jmWEqRpqs,1564
|
27
|
-
msfabricpysdkcore/tests/test_connection.py,sha256=jmwvRwfp81-a3eHjC_rBFgBJJihZ63qXVdfilTaxHYw,4491
|
28
|
-
msfabricpysdkcore/tests/test_copy_jobs.py,sha256=BDS1OQvHq3iZzi9EpdhyZXlHyqw91no3PcpqDpL_5Ws,2415
|
29
|
-
msfabricpysdkcore/tests/test_dataflows.py,sha256=JjJVI-MQu4aQxEPxyOX9rJFw1-C2ncbSJq9mqfxuoNw,2416
|
30
|
-
msfabricpysdkcore/tests/test_datapipelines.py,sha256=Z9ftGVkpvYe3ZSX5yti_UHUa5SzKToKVsT2Inopw5Cc,2626
|
31
|
-
msfabricpysdkcore/tests/test_deployment_pipeline.py,sha256=J7szEWrw26U91O6hSooUAJ2eNorDo-x55lPgr00J-gU,2072
|
32
|
-
msfabricpysdkcore/tests/test_deployment_pipelinev2.py,sha256=QxydDk-mwmDFX9Iof1dFJn_fnQ5g6okKgjZXow4WIIo,5641
|
33
|
-
msfabricpysdkcore/tests/test_domains.py,sha256=KQIzziiQcnNjrgUlV8Ei_HT41LwaJCI5AnWsIHmEQxI,4711
|
34
|
-
msfabricpysdkcore/tests/test_environments.py,sha256=EDyS-pbLVI5AVEq0_JklpDe5lc_tdsPAPf1n4Gm3rbo,5132
|
35
|
-
msfabricpysdkcore/tests/test_evenhouses.py,sha256=xl9AWV4-H69IwHvrzoF4T_mDNuaUsVoRAI5171tIPcg,2283
|
36
|
-
msfabricpysdkcore/tests/test_evenstreams.py,sha256=nTvDwhkuHewkjETDK3hk2KjbFBfOCWiBTGStoiXSiYk,2013
|
37
|
-
msfabricpysdkcore/tests/test_eventstream_topology.py,sha256=V69pVWBsiyGCW2WBmD_AXOvVszbk4oDKw7u2pa09IwI,3112
|
38
|
-
msfabricpysdkcore/tests/test_external_data_shares.py,sha256=YqFiVFSWhVW7pLc0DC6Em4GFOGkok2Gezk8llPOtsv0,1550
|
39
|
-
msfabricpysdkcore/tests/test_fabric_azure_client.py,sha256=_dTc3vLILwXstvDs3TUFg3aCY-14CiI4cZ5-EdEtqJY,3099
|
40
|
-
msfabricpysdkcore/tests/test_folders.py,sha256=LOverLUKMAwRQPvmA6ltfPdILmzm2UnysKcZmEu0CFc,1783
|
41
|
-
msfabricpysdkcore/tests/test_gateways.py,sha256=xR5kpgxeW_PmTvcRdUITNCRGMJCgJTQfN9GGeY6bvuE,3685
|
42
|
-
msfabricpysdkcore/tests/test_git.py,sha256=KIME3KzqnDNmmsg4M4GhhDqeVqeMXy4iVA6MJOOmrlE,2567
|
43
|
-
msfabricpysdkcore/tests/test_graphqlapi.py,sha256=NGAIfh0GjAtgKybTNCgHa2Fs2AwR34_pP6QGAgJ7Wpw,1633
|
44
|
-
msfabricpysdkcore/tests/test_items.py,sha256=84bnWyyTzvTzrEQ3Vz17AHZjo7ZvovY-zMDHO6za6g0,4546
|
45
|
-
msfabricpysdkcore/tests/test_jobs.py,sha256=wa7RiqExvZddW425beSZ5yy9zmWHlgTfRUrEySmrfDs,4086
|
46
|
-
msfabricpysdkcore/tests/test_kql_dashboards.py,sha256=w1_MiVEVfGsDkSIt3BTnUHxY5iFzfAHQcAuC6Qnzlzs,2377
|
47
|
-
msfabricpysdkcore/tests/test_kql_queryset.py,sha256=KqIz8oxq-i394r-ezKqYiWCPvls_REfj3XKVXfopGx8,2606
|
48
|
-
msfabricpysdkcore/tests/test_kqldatabases.py,sha256=dPAerTpTrFNrbSQqSv-Y745TR-Dku33CNvm202T8P28,2372
|
49
|
-
msfabricpysdkcore/tests/test_lakehouse.py,sha256=OqeDjeyszMdzq6yiNZ0zFLOACqJLCCdEy5gsG0aw6PE,3805
|
50
|
-
msfabricpysdkcore/tests/test_managed_private_endpoints.py,sha256=prd3FbH1Z0o0BC26NpzZmy8yCTOCHiL45MLhTcYY0dQ,3167
|
51
|
-
msfabricpysdkcore/tests/test_mirroreddatabases.py,sha256=b0KjReoJ9U3tTbtmhtV2Vk9zatBR10cmpOg4Omuj5EU,3686
|
52
|
-
msfabricpysdkcore/tests/test_ml_experiments.py,sha256=UJIQitJdUDRlmAmF2jdXuFPYvp8BsrpDyI2opyIBt8I,1897
|
53
|
-
msfabricpysdkcore/tests/test_ml_models.py,sha256=AilbnYXb9rTUZW5sPJ0HqFZxB5fkTb0t_qnRW1NhO_E,1723
|
54
|
-
msfabricpysdkcore/tests/test_mounted_adf.py,sha256=4TPUvAiRR4yDCNdWr9a554ajLkIvZwB3Wx08chOqzp8,3409
|
55
|
-
msfabricpysdkcore/tests/test_notebooks.py,sha256=usk99tftcJb-3m8rjmpiFOD5Dqp3dd4e7RFEeUMkX7c,2280
|
56
|
-
msfabricpysdkcore/tests/test_one_lake_data_access_security.py,sha256=eto_F6oBRqggGgWVHQ52mB6D2G-Qr-y74Sx308aJDqc,2297
|
57
|
-
msfabricpysdkcore/tests/test_other_items.py,sha256=rGyL7QCn9Y_k_NIyctIIxwujtM5_MeMKJ3g6gU1CWM4,1772
|
58
|
-
msfabricpysdkcore/tests/test_reflex.py,sha256=TDP1UccImfr7cSJeYmwJNX4xJV1SD-DxIJaqzyCsn9Q,2023
|
59
|
-
msfabricpysdkcore/tests/test_reports.py,sha256=Wu0VqArrUxuCs6l1zCcNyb8TGjrdzg-yGiRjXjThjTM,2093
|
60
|
-
msfabricpysdkcore/tests/test_semantic_model.py,sha256=AKQk0BBjMBs0j6sR8B_NE66OW2woTHkGlOaXARn34_U,2477
|
61
|
-
msfabricpysdkcore/tests/test_shortcuts.py,sha256=1ANIi8PCZCLDR2yFE0MyZvGIUxS-aJR9SsWgFl2ipoA,2622
|
62
|
-
msfabricpysdkcore/tests/test_spark.py,sha256=faoVF3AuUCyfk2PvVccPngafyAkhq2SAj87KmESUwx0,3546
|
63
|
-
msfabricpysdkcore/tests/test_sparkjobdefinition.py,sha256=SANfiOLgwKRGnQN9ArEwv0fyXM12glEn9BG4jIL4W-c,2838
|
64
|
-
msfabricpysdkcore/tests/test_sqldatabases.py,sha256=aFH-JLHKASGiIqz14wGpHfBMp_5OMZ3x_Upd_O0A2f0,1642
|
65
|
-
msfabricpysdkcore/tests/test_tags.py,sha256=M28StU18QJorbIVylue-zKOUbxrufu0VFo1hzwFIfc8,963
|
66
|
-
msfabricpysdkcore/tests/test_variable_libary.py,sha256=UbcfS3N24WBjDMr3fJOdYx1hC78dlYzdqUwr1_D6I8A,2759
|
67
|
-
msfabricpysdkcore/tests/test_warehouses.py,sha256=CKF2kJMe-JSOWWok3dR_hn5HNwz9GtKoYT4fP59mTPk,1813
|
68
|
-
msfabricpysdkcore/tests/test_workspaces_capacities.py,sha256=V5ePndbtLVyYNa8Kug1Ul0oOF-Jd6DXEl8PclgfLhuw,6822
|
69
|
-
msfabricpysdkcore/util/__init__.py,sha256=p-1dC4AurfKdIUppNVlRCIcmwHBTURqfgIwxcie3fEA,50
|
70
|
-
msfabricpysdkcore/util/logger.py,sha256=XXdeaqI-BhXZgacChKrWP88TPU4FTWvS8L0YWjCT54A,1166
|
71
|
-
msfabricpysdkcore-0.2.6.dist-info/licenses/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
|
72
|
-
msfabricpysdkcore-0.2.6.dist-info/METADATA,sha256=CsAv0HlDVQCWbj1TcfG5lgCDzrUNbirAPm5QYDcsnhg,39753
|
73
|
-
msfabricpysdkcore-0.2.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
74
|
-
msfabricpysdkcore-0.2.6.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
|
75
|
-
msfabricpysdkcore-0.2.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|