msfabricpysdkcore 0.0.12__py3-none-any.whl → 0.1.1__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.
Files changed (45) hide show
  1. msfabricpysdkcore/admin_item.py +18 -44
  2. msfabricpysdkcore/admin_workspace.py +13 -60
  3. msfabricpysdkcore/adminapi.py +400 -429
  4. msfabricpysdkcore/client.py +115 -1
  5. msfabricpysdkcore/coreapi.py +2553 -763
  6. msfabricpysdkcore/deployment_pipeline.py +34 -146
  7. msfabricpysdkcore/domain.py +20 -219
  8. msfabricpysdkcore/environment.py +13 -171
  9. msfabricpysdkcore/item.py +63 -198
  10. msfabricpysdkcore/job_instance.py +8 -22
  11. msfabricpysdkcore/lakehouse.py +9 -118
  12. msfabricpysdkcore/long_running_operation.py +7 -37
  13. msfabricpysdkcore/onelakeshortcut.py +7 -21
  14. msfabricpysdkcore/otheritems.py +66 -91
  15. msfabricpysdkcore/spark_custom_pool.py +7 -47
  16. msfabricpysdkcore/tests/test_admin_apis.py +21 -1
  17. msfabricpysdkcore/tests/test_datapipelines.py +14 -17
  18. msfabricpysdkcore/tests/test_deployment_pipeline.py +3 -3
  19. msfabricpysdkcore/tests/test_domains.py +4 -3
  20. msfabricpysdkcore/tests/test_environments.py +51 -2
  21. msfabricpysdkcore/tests/test_evenhouses.py +48 -0
  22. msfabricpysdkcore/tests/test_evenstreams.py +1 -1
  23. msfabricpysdkcore/tests/test_external_data_shares.py +51 -0
  24. msfabricpysdkcore/tests/test_items.py +80 -0
  25. msfabricpysdkcore/tests/test_kql_queryset.py +50 -0
  26. msfabricpysdkcore/tests/test_kqldatabases.py +1 -1
  27. msfabricpysdkcore/tests/test_lakehouse.py +86 -0
  28. msfabricpysdkcore/tests/test_ml_experiments.py +48 -0
  29. msfabricpysdkcore/tests/test_ml_models.py +48 -0
  30. msfabricpysdkcore/tests/test_notebooks.py +58 -0
  31. msfabricpysdkcore/tests/test_one_lake_data_access_security.py +65 -0
  32. msfabricpysdkcore/tests/test_other_items.py +46 -0
  33. msfabricpysdkcore/tests/test_reports.py +53 -0
  34. msfabricpysdkcore/tests/test_semantic_model.py +51 -0
  35. msfabricpysdkcore/tests/test_spark.py +7 -5
  36. msfabricpysdkcore/tests/test_sparkjobdefinition.py +1 -1
  37. msfabricpysdkcore/tests/test_warehouses.py +51 -0
  38. msfabricpysdkcore/tests/test_workspaces_capacities.py +7 -4
  39. msfabricpysdkcore/workspace.py +397 -1121
  40. {msfabricpysdkcore-0.0.12.dist-info → msfabricpysdkcore-0.1.1.dist-info}/METADATA +110 -8
  41. msfabricpysdkcore-0.1.1.dist-info/RECORD +52 -0
  42. {msfabricpysdkcore-0.0.12.dist-info → msfabricpysdkcore-0.1.1.dist-info}/WHEEL +1 -1
  43. msfabricpysdkcore-0.0.12.dist-info/RECORD +0 -39
  44. {msfabricpysdkcore-0.0.12.dist-info → msfabricpysdkcore-0.1.1.dist-info}/LICENSE +0 -0
  45. {msfabricpysdkcore-0.0.12.dist-info → msfabricpysdkcore-0.1.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: msfabricpysdkcore
3
- Version: 0.0.12
3
+ Version: 0.1.1
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
@@ -24,7 +24,7 @@ They are designed to automate your Fabric processes.
24
24
 
25
25
  This SDK helps to interact with the Fabric APIs in a more Pythonic way.
26
26
  Additionally it brings some extra features like:
27
- - Authentication is handled for you (currently Azure CLI Authentication and Service Principal Authentication are supported, as well as Synapse Spark Authentication in Fabric Notebooks)
27
+ - Authentication is handled for you (currently Azure CLI Authentication, Authentication from a Microsoft Fabric notebook and Service Principal Authentication are supported)
28
28
  - Waiting for completion of long running operations
29
29
  - Retry logic when hitting the API rate limits
30
30
  - Referencing objects by name instead of ID
@@ -38,14 +38,17 @@ Currently it supports all Core APIs, Admin APIs, Lakehouse APIs and all other it
38
38
  - Core APIs
39
39
  - [Capacities](#working-with-capacities)
40
40
  - [Deployment Pipelines](#deployment-pipelines)
41
+ - [External Data Shares](#external-data-shares)
41
42
  - [Git](#working-with-git)
42
43
  - [Items](#working-with-items)
43
44
  - [Job Scheduler](#working-with-job-scheduler)
44
45
  - [Long Running Operations](#long-running-operations)
46
+ - [OneLakeDataAccessSecurity](#one-lake-data-access-security)
45
47
  - [OneLakeShortcuts](#working-with-one-lake-shortcuts)
46
48
  - [Workspaces](#working-with-workspaces)
47
49
  - Admin APIs
48
50
  - [Domains](#admin-api-for-domains)
51
+ - [External Data Shares](#admin-api-for-external-data-shares)
49
52
  - [Items](#admin-api-for-items)
50
53
  - [Labels](#admin-api-for-labels)
51
54
  - [Tenants](#admin-api-for-tenants)
@@ -82,6 +85,7 @@ from msfabricpysdkcore import FabricClientCore
82
85
  # Create a client
83
86
 
84
87
  # Either login with the Azure CLI first and initiate the client directly
88
+ # This also works directly in a Microsoft Fabric notebook
85
89
  fc = FabricClientCore()
86
90
 
87
91
  # Or use a service principal (note that not all APIs are supported with service principal)
@@ -227,7 +231,7 @@ pipe = fc.get_deployment_pipeline(pipe_id)
227
231
 
228
232
 
229
233
  # Get deployment pipeline stages
230
- stages = fc.get_deployment_pipeline_stages(pipe_id)
234
+ stages = fc.list_deployment_pipeline_stages(pipe_id)
231
235
 
232
236
  names = [stage.display_name for stage in stages]
233
237
 
@@ -235,7 +239,7 @@ dev_stage = [stage for stage in stages if stage.display_name == "Development"][0
235
239
  prod_stage = [stage for stage in stages if stage.display_name == "Production"][0]
236
240
 
237
241
  # Get deployment pipeline stages items
238
- items = fc.get_deployment_pipeline_stages_items(pipeline_id=pipe_id, stage_id=dev_stage.id)
242
+ items = fc.list_deployment_pipeline_stages_items(pipeline_id=pipe_id, stage_id=dev_stage.id)
239
243
 
240
244
 
241
245
  items = [item for item in dev_stage.get_items() if item["itemDisplayName"] == 'cicdlakehouse']
@@ -249,6 +253,43 @@ response = pipe.deploy(source_stage_id=dev_stage.id,target_stage_id=prod_stage.i
249
253
 
250
254
  ```
251
255
 
256
+ ### External Data Shares
257
+
258
+ ```python
259
+ from msfabricpysdkcore.coreapi import FabricClientCore
260
+
261
+ fc = FabricClientCore()
262
+
263
+ workspace_id = 'yxcvyxcvyxcv'
264
+ item_id = 'sdfsdfsdfsf'
265
+
266
+
267
+ # Create
268
+
269
+ recipient = {
270
+ "userPrincipalName": "lisa4@fabrikam.com"
271
+ }
272
+ paths=["Files/external"]
273
+
274
+ data_share = fc.create_external_data_share(workspace_id, item_id, paths, recipient)
275
+
276
+ # Get
277
+
278
+ data_share2 = fc.get_external_data_share(workspace_id, item_id, data_share['id'])
279
+
280
+ # List
281
+
282
+ data_share_list = fc.list_external_data_shares_in_item(workspace_id, item_id)
283
+
284
+ data_share_ids = [ds['id'] for ds in data_share_list]
285
+
286
+ # Revoke
287
+
288
+ response_code = fc.revoke_external_data_share(workspace_id, item_id, data_share['id'])
289
+
290
+ ```
291
+
292
+
252
293
  ### Working with items
253
294
 
254
295
  ```python
@@ -272,11 +313,11 @@ item_list = ws.list_items()
272
313
 
273
314
 
274
315
  # Update an item
275
- fc.update_item(workspace_id="workspace_id", item_id="item_id" display_name="new_item_name", description = None)
316
+ fc.update_item(workspace_id="workspace_id", item_id="item_id" display_name="new_item_name", description = None, return_item=True)
276
317
  # or
277
- ws.update_item(item_id="item_id", display_name="new_item_name", description = None)
318
+ ws.update_item(item_id="item_id", display_name="new_item_name", description = None, return_item=True)
278
319
  # or
279
- item.update(display_name="new_item_name", description = None)
320
+ item.update(display_name="new_item_name", description = None, return_item=True)
280
321
 
281
322
 
282
323
  # Delete an item
@@ -452,6 +493,44 @@ results = fc.get_operation_results(operation_id)
452
493
 
453
494
  ```
454
495
 
496
+ ### One Lake Data Access Security
497
+
498
+ ```python
499
+ from msfabricpysdkcore import FabricClientCore
500
+
501
+ fc = FabricClientCore()
502
+
503
+ workspace_id = "d8aafgasdsdbe5"
504
+ item_id = "503hsdfhs48364"
505
+
506
+ # List
507
+
508
+ resp = fc.list_data_access_roles(workspace_id=workspace_id, item_id=item_id)
509
+
510
+ roles = resp[0]
511
+ etag = resp[1]
512
+
513
+
514
+ # Create or Update
515
+
516
+ role1 = roles[1]
517
+
518
+ item_access = role1["members"]["fabricItemMembers"][0]['itemAccess']
519
+ +
520
+ if 'ReadAll' in item_access:
521
+ item_access = ['Read', 'Write', 'Execute']
522
+ else:
523
+ item_access.append('ReadAll')
524
+
525
+ role1["members"]["fabricItemMembers"][0]['itemAccess'] = item_access
526
+ roles[1] = role1
527
+
528
+ resp = fc.create_or_update_data_access_roles(workspace_id=workspace_id,
529
+ item_id=item_id,
530
+ data_access_roles=roles,
531
+ etag_match={"If-Match":etag})
532
+
533
+ ```
455
534
 
456
535
  ### Admin API for Workspaces
457
536
 
@@ -576,7 +655,7 @@ domains = fca.list_domains()
576
655
 
577
656
  # Update domain
578
657
  domain_new_name = "sdktestdomains2"
579
- domain_clone = fca.update_domain(domain.id, display_name=domain_new_name)
658
+ domain_clone = fca.update_domain(domain.id, display_name=domain_new_name, return_item=True)
580
659
 
581
660
  # Assign domain workspaces by Ids
582
661
  fca.assign_domain_workspaces_by_ids(domain.id, ["workspace_id_1", "workspace_id_2"])
@@ -611,6 +690,29 @@ status_code = fca.role_assignments_bulk_unassign(domain.id, "Contributors", [pri
611
690
  status_code = fca.delete_domain(domain.id)
612
691
  ```
613
692
 
693
+ ### Admin API for External Data Shares
694
+
695
+ ```python
696
+ from msfabricpysdkcore import FabricClientAdmin
697
+
698
+ fca = FabricClientAdmin()
699
+
700
+ # List external data shares
701
+
702
+ data_shares = fca.list_external_data_shares()
703
+ ws = fca.list_workspaces(name="testworkspace")[0]
704
+
705
+ data_shares = [d for d in data_shares if d['workspaceId'] == ws.id]
706
+
707
+ # Revoke external data share
708
+
709
+ fca.revoke_external_data_share(external_data_share_id = data_shares[0]['id'],
710
+ item_id = data_shares[0]['itemId'],
711
+ workspace_id = data_shares[0]['workspaceId'])
712
+
713
+
714
+ ```
715
+
614
716
 
615
717
  Note: This SDK is not an official SDK from Microsoft. It is a community project and not supported by Microsoft. Use it at your own risk.
616
718
  Also the API is still in preview and might change. This SDK is not yet feature complete and might not cover all APIs yet. Feel free to contribute to this project to make it better.
@@ -0,0 +1,52 @@
1
+ msfabricpysdkcore/__init__.py,sha256=nh8-lxdMBWYSbQpbRxWkn3ZRpGipmQplTudjskN2l88,78
2
+ msfabricpysdkcore/admin_item.py,sha256=sYeE_wrkaqM00bCqDVYvf5efbwICL5fDZc0PzW-hsj4,3280
3
+ msfabricpysdkcore/admin_workspace.py,sha256=umNnIF8sf5Y8BDgfQdfG6sOZrQQc7RJINL9j8DPnm3c,3180
4
+ msfabricpysdkcore/adminapi.py,sha256=c-Ld0rMBNXgzJUBhpTFCPzoDjF-9xIW_QFs66tR-Rdk,25841
5
+ msfabricpysdkcore/auth.py,sha256=v5YkI4jA6T7lv5rjqTK-GEPx2ATDPKQ1LVcaCg98oLM,2562
6
+ msfabricpysdkcore/capacity.py,sha256=Q_2-XrZtdf9F67fY0qU3D0ocEOGQq4KtIXAv9dXjQhI,1761
7
+ msfabricpysdkcore/client.py,sha256=gT0vsaMzTCajrze9X8Q3iIC6ItFVpXV7v5Pf_BDf8Sc,6533
8
+ msfabricpysdkcore/coreapi.py,sha256=P1pk-d-mj8cHjPJNzE15Z8w2D1a-tPUJQxIedqwW8sI,131220
9
+ msfabricpysdkcore/deployment_pipeline.py,sha256=65veAiaeu51t2iRZD3ZXU3LDRqEMn5VElup1WBojX08,5579
10
+ msfabricpysdkcore/domain.py,sha256=92IVvZ3jXHIT1a0zlTPD7uoQX6TcBBE_Y_b4dScxHSU,6949
11
+ msfabricpysdkcore/environment.py,sha256=4k2Le1mAQIrfcpNc3n1DbgdCzAldGTSTCbiDQGk0DlA,2784
12
+ msfabricpysdkcore/item.py,sha256=3ixgRDTmrKXw82xl1MkaaOQ2986s2_DFEJQeUkKPcEU,6376
13
+ msfabricpysdkcore/job_instance.py,sha256=HXSUVoE4XaG2Ic5RYZ1Mx3ymiIarHDAnyjaXXY4Aj74,2381
14
+ msfabricpysdkcore/lakehouse.py,sha256=yIrzatWM9emPn-Y54Cg_ZdAydIWjxrpK65jIQ4SClgE,1703
15
+ msfabricpysdkcore/long_running_operation.py,sha256=RJeExL1R8gqJ1b6TTUMn7CqLr_YH0vhEc3QJ8RsxZrI,1868
16
+ msfabricpysdkcore/onelakeshortcut.py,sha256=H02wR6Z86qTEJOwVRMKz1Ou3K88Y9pfJa91vizjprvo,1661
17
+ msfabricpysdkcore/otheritems.py,sha256=rkIbF-LxUUZh0ZDqFiWeutMeIsBXw_R8UUCglIifWBQ,12024
18
+ msfabricpysdkcore/spark_custom_pool.py,sha256=YsEULaQG-FO507aPIb-4kk93ZWBmDZj6fbOEHYoyxHE,3188
19
+ msfabricpysdkcore/workspace.py,sha256=7ZOt8ovlUOfusQ-avl4OOgMueN1XAp7AXdfpzAhXh3s,40428
20
+ msfabricpysdkcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ msfabricpysdkcore/tests/test_admin_apis.py,sha256=vKNc3juSt3vVZfKQyiX3T30fO_MmzmlVsM1pWP2npAY,3416
22
+ msfabricpysdkcore/tests/test_datapipelines.py,sha256=-lMOLPTOx7ZA2IxAwbj0WbpIAdI9itsTrg9nQJ3HQbU,1774
23
+ msfabricpysdkcore/tests/test_deployment_pipeline.py,sha256=J7szEWrw26U91O6hSooUAJ2eNorDo-x55lPgr00J-gU,2072
24
+ msfabricpysdkcore/tests/test_domains.py,sha256=5RQbfBykx_aRG9lFoM7caS0DKsxe7XY84uejtthhlkc,4711
25
+ msfabricpysdkcore/tests/test_environments.py,sha256=J1zPJ3yf9pWOyjaKdxewNyYI-du3vvtuDN9qJpYHWos,5117
26
+ msfabricpysdkcore/tests/test_evenhouses.py,sha256=JoO92qQ6qbidaoVKhMubHW32qbC7Sy-71OBw8ya7E28,1888
27
+ msfabricpysdkcore/tests/test_evenstreams.py,sha256=n7u0_evnHJc91-SvRw1Er77eHnSKxVueZVIAmUZYE7I,1646
28
+ msfabricpysdkcore/tests/test_external_data_shares.py,sha256=M3nbjNCZU5BDxXGt5649HQtIgaiK_U4hLvm770yVcSw,1550
29
+ msfabricpysdkcore/tests/test_git.py,sha256=pmhVYZGDMEFtgy51hKrDWqtea-MryyeyvPKVCaTsIEA,2415
30
+ msfabricpysdkcore/tests/test_items.py,sha256=cpKcfIEo6lYOsa4-Lxg9cHtsZcVUXgDJM1rFt4GfywQ,3491
31
+ msfabricpysdkcore/tests/test_items_incl_lakehouse.py,sha256=zWNmOI_Ysh96d8P-Sm4IOCzMqXTCEBg63lxCDZZ_9b8,17987
32
+ msfabricpysdkcore/tests/test_jobs.py,sha256=DC1nQTav_Re7uunRA07wD_56giLqe9KOsgm56Il8Zr4,1632
33
+ msfabricpysdkcore/tests/test_kql_queryset.py,sha256=IOzZw4V_UfBJxAZfDIiZnOMW1lb60Fa0nHVGK9VbRCc,1974
34
+ msfabricpysdkcore/tests/test_kqldatabases.py,sha256=fiaBReJJ3anW7wfpHVm5sm-Ps-oifKqVpaqcVP6drqo,1939
35
+ msfabricpysdkcore/tests/test_lakehouse.py,sha256=Ifokq6twHQhMT1wzGwZZptYzzkfOFPqvuWPeEWrZOeI,3482
36
+ msfabricpysdkcore/tests/test_ml_experiments.py,sha256=09VcjPhvUVhfd7gdzZgz_GvyI2HBT5GIzPiHQySXnlA,1965
37
+ msfabricpysdkcore/tests/test_ml_models.py,sha256=q_XmL1Fef_uwB5s7W8UzurBJLxisNTWrj1pQfnIJhyc,1791
38
+ msfabricpysdkcore/tests/test_notebooks.py,sha256=FpHcjNxXLdAQjEC3Arw1tuT93AS3YnjlhEp3_DoCnds,2348
39
+ msfabricpysdkcore/tests/test_one_lake_data_access_security.py,sha256=GY5jm3Rz8WgPbUP7L8Y3V8sE4iV3LyyhGhLik__TX0w,2301
40
+ msfabricpysdkcore/tests/test_other_items.py,sha256=LsJA7zRkTaD9C20oClw-orPtWokUqZMumPlV7QjIwpg,1835
41
+ msfabricpysdkcore/tests/test_reports.py,sha256=O-VLKeqC2yfTCHDz4nFbRIHHAu9ZmaFnysNfBfpuw9k,1957
42
+ msfabricpysdkcore/tests/test_semantic_model.py,sha256=K1W56KX3PohDGl6Gzqr4PISkKQ9PAobRrgCuSLunNhI,2199
43
+ msfabricpysdkcore/tests/test_shortcuts.py,sha256=TqGLzEWsDyiQ0Gf6JpT_qBHUCgcvYXfVwpXxOay7Qz4,2407
44
+ msfabricpysdkcore/tests/test_spark.py,sha256=voJOci0BdhX5HVCjupwg4muP3vAd4Yf7l7WsP6FJapg,3601
45
+ msfabricpysdkcore/tests/test_sparkjobdefinition.py,sha256=SlnCLTpFO03fjtqjp7PqGJCxGkWC3q6O-s4Z4rnYWIo,2838
46
+ msfabricpysdkcore/tests/test_warehouses.py,sha256=ID7hDpl0Ih3A_JPj6J-ynzKMqKoZrdnISyrIQlsFsj8,1881
47
+ msfabricpysdkcore/tests/test_workspaces_capacities.py,sha256=QQuKuXL8Af4rBGe_fYPyevqqnEFiWUsnpr5rEVoe-Ws,6822
48
+ msfabricpysdkcore-0.1.1.dist-info/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
49
+ msfabricpysdkcore-0.1.1.dist-info/METADATA,sha256=jW7Mz59FpgshhjH_SUjy4YzG-BfdMbBffe9r8msCC2Q,20521
50
+ msfabricpysdkcore-0.1.1.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
51
+ msfabricpysdkcore-0.1.1.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
52
+ msfabricpysdkcore-0.1.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.2.0)
2
+ Generator: setuptools (70.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,39 +0,0 @@
1
- msfabricpysdkcore/__init__.py,sha256=nh8-lxdMBWYSbQpbRxWkn3ZRpGipmQplTudjskN2l88,78
2
- msfabricpysdkcore/admin_item.py,sha256=OGVfMMqAKy80Ukp8TJnpXoRq8WbWX7Qq1hz7tmfiUBU,4020
3
- msfabricpysdkcore/admin_workspace.py,sha256=RctVsXZ57ppiybua69BW_yVpUbrGic6fYOjFPZFPAzA,4862
4
- msfabricpysdkcore/adminapi.py,sha256=uithaYq_HWDU-9Et_EFBNQfrjcjnI-NW6OCmWoAsZxk,25649
5
- msfabricpysdkcore/auth.py,sha256=v5YkI4jA6T7lv5rjqTK-GEPx2ATDPKQ1LVcaCg98oLM,2562
6
- msfabricpysdkcore/capacity.py,sha256=Q_2-XrZtdf9F67fY0qU3D0ocEOGQq4KtIXAv9dXjQhI,1761
7
- msfabricpysdkcore/client.py,sha256=yOZ1CW2ilL8a7J_SRNa-EQbG8xNlJKW3ygniIrsADsw,1300
8
- msfabricpysdkcore/coreapi.py,sha256=IUutbCz_Dag2rFWbmbSVt8AkFnj4CJdP-v-jXOrFrBA,49645
9
- msfabricpysdkcore/deployment_pipeline.py,sha256=RFI86rtG-eTpV-_tVl3cXtcTl9ekRvOI5fLsXo9CMVA,9739
10
- msfabricpysdkcore/domain.py,sha256=i8jMJEutDRL5XuQ69woCVQEzLS_lm9uUxl4Kp3xtxHc,14722
11
- msfabricpysdkcore/environment.py,sha256=ENgy7URz_gJ4E5-OH355QF6vqawBoHjHMbjnoEJfGwM,10072
12
- msfabricpysdkcore/item.py,sha256=HIr32drqNtlIKKXkXCcWI2H_TZMDalCxvikTyDHNprA,11428
13
- msfabricpysdkcore/job_instance.py,sha256=C9kKsV-BIJSeU6DfoTnLlg4DLp-8RYpovs0A-mKwi4o,2745
14
- msfabricpysdkcore/lakehouse.py,sha256=nv95SBz_jsssT5dEw622WqtDHUyh5bFFsVTwiqo8s-c,6055
15
- msfabricpysdkcore/long_running_operation.py,sha256=Itm8ohr9fPIdP7UO9_xehQ6wb6t4hsCuvDbcOSzAgVA,2981
16
- msfabricpysdkcore/onelakeshortcut.py,sha256=EYZfP-rl60HdCqJD1O1NXrQTgrYTIw-EWisF4hs4bTU,2102
17
- msfabricpysdkcore/otheritems.py,sha256=D-sGriO9ck4pqzsLY6bZLJUDXIBkyNyqCPoJmgextbk,12571
18
- msfabricpysdkcore/spark_custom_pool.py,sha256=2H-GkGcDsiKxSpXFSf8Zi7xJI5_krb_8sGdF5vDjEy8,4635
19
- msfabricpysdkcore/workspace.py,sha256=IdP0qDXD-0JVZnK_cn9VILNQ5-FQGFzGXq-MoCkLyWs,68563
20
- msfabricpysdkcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- msfabricpysdkcore/tests/test_admin_apis.py,sha256=HTXt72p9FiEf3q9SXyq9aImR6zZo_xIREfB0xPaYazU,2586
22
- msfabricpysdkcore/tests/test_datapipelines.py,sha256=rIeZfv-MGewYYscb36jmjL8DLZ3Z1dJWv09foR9z_y8,1812
23
- msfabricpysdkcore/tests/test_deployment_pipeline.py,sha256=7bXqSpnU8Hb7KyKldhA7hVM8QqKHj0WoT9_kC27hsxM,2058
24
- msfabricpysdkcore/tests/test_domains.py,sha256=KFGQyl0G2v4JjX_xYHY-vPSjYxeLEx3AcXMdiRZzClc,4620
25
- msfabricpysdkcore/tests/test_environments.py,sha256=zSIMhkQscMB7doJEQRBRMvAEBxO1Kl1N85MKXP3yeYI,3120
26
- msfabricpysdkcore/tests/test_evenstreams.py,sha256=i6hhsOnDJ-BN7kStg7gQhZVPMVaB73K7KJez6pEKlv0,1628
27
- msfabricpysdkcore/tests/test_git.py,sha256=pmhVYZGDMEFtgy51hKrDWqtea-MryyeyvPKVCaTsIEA,2415
28
- msfabricpysdkcore/tests/test_items_incl_lakehouse.py,sha256=zWNmOI_Ysh96d8P-Sm4IOCzMqXTCEBg63lxCDZZ_9b8,17987
29
- msfabricpysdkcore/tests/test_jobs.py,sha256=DC1nQTav_Re7uunRA07wD_56giLqe9KOsgm56Il8Zr4,1632
30
- msfabricpysdkcore/tests/test_kqldatabases.py,sha256=Oc2ZzpQAVbiJeZ5ytwlP2Jb-tKe-2e9-1oA-upwRKBQ,1921
31
- msfabricpysdkcore/tests/test_shortcuts.py,sha256=TqGLzEWsDyiQ0Gf6JpT_qBHUCgcvYXfVwpXxOay7Qz4,2407
32
- msfabricpysdkcore/tests/test_spark.py,sha256=5BCAgHRiuXjIRnGrbvNNh9emq0VyZXlvIWgWAEir5ZQ,3437
33
- msfabricpysdkcore/tests/test_sparkjobdefinition.py,sha256=whADi8l4opMaoB4b1W5EbuddyB5tC5OEqGRFKVUYMH4,2820
34
- msfabricpysdkcore/tests/test_workspaces_capacities.py,sha256=52FqGZRVvHDegLgu71kGX_Tx4cRh9lO_wuK8BG_czkQ,6699
35
- msfabricpysdkcore-0.0.12.dist-info/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
36
- msfabricpysdkcore-0.0.12.dist-info/METADATA,sha256=bK4vYEgjRLyzNJhBUnSSI6I9GlWnZcXIYDoo5z6__TY,17944
37
- msfabricpysdkcore-0.0.12.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
38
- msfabricpysdkcore-0.0.12.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
39
- msfabricpysdkcore-0.0.12.dist-info/RECORD,,