msfabricpysdkcore 0.2.3__py3-none-any.whl → 0.2.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: msfabricpysdkcore
3
- Version: 0.2.3
3
+ Version: 0.2.5
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 March 06, 2025).
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 May 19, 2025).
22
22
 
23
23
  ![Python hugging a F](assets/fabricpythontransparent.png)
24
24
 
@@ -47,7 +47,9 @@ Currently it supports all Core APIs, Admin APIs, all item specific CRUD APIs and
47
47
  - [Capacities](#working-with-capacities)
48
48
  - [Connections](#connections)
49
49
  - [Deployment Pipelines](#deployment-pipelines)
50
- - [External Data Shares](#external-data-shares)
50
+ - [External Data Shares Provider](#external-data-shares-provider)
51
+ - [External Data Shares Recipient](#external-data-shares-recipient)
52
+ - [Folders](#folders)
51
53
  - [Gateways](#gateways)
52
54
  - [Git](#working-with-git)
53
55
  - [Items](#working-with-items)
@@ -56,12 +58,14 @@ Currently it supports all Core APIs, Admin APIs, all item specific CRUD APIs and
56
58
  - [Long Running Operations](#long-running-operations)
57
59
  - [OneLakeDataAccessSecurity](#one-lake-data-access-security)
58
60
  - [OneLakeShortcuts](#working-with-one-lake-shortcuts)
61
+ - [Tags](#tags)
59
62
  - [Workspaces](#working-with-workspaces)
60
63
  - Admin APIs
61
64
  - [Domains](#admin-api-for-domains)
62
65
  - [External Data Shares](#admin-api-for-external-data-shares)
63
66
  - [Items](#admin-api-for-items)
64
67
  - [Labels](#admin-api-for-labels)
68
+ - [Tags](#admin-api-for-tags)
65
69
  - [Tenants](#admin-api-for-tenants)
66
70
  - [Users](#admin-api-for-users)
67
71
  - [Workspaces](#admin-api-for-workspaces)
@@ -119,6 +123,8 @@ fc = FabricClientCore(tenant_id = "tenant_id",
119
123
 
120
124
  token = fc.get_token()
121
125
  ```
126
+
127
+
122
128
  ### Working with workspaces
123
129
 
124
130
  ```python
@@ -315,43 +321,112 @@ role_assi = fc.update_connection_role_assignment(connection_id="id",
315
321
  ### Deployment Pipelines
316
322
 
317
323
  ```python
324
+ from msfabricpysdkcore import FabricClientCore
318
325
 
326
+ fcc = FabricClientCore()
327
+ workspace_id = "72dasdfasdf56"
328
+
329
+ user_id = "e05sadfasfd23"
330
+ capacity_id = "9e7easdfasdf2a00"
331
+
332
+ prod_workspace = fcc.create_workspace("prodworkspace")
333
+ prod_workspace.assign_to_capacity(capacity_id)
334
+
335
+ stages = [
336
+ {
337
+ "displayName": "Development",
338
+ "description": "Development stage description",
339
+ "isPublic": False
340
+ },
341
+ {
342
+ "displayName": "Production",
343
+ "description": "Production stage description",
344
+ "isPublic":True
345
+ }
346
+ ]
319
347
 
320
- # List deployment pipelines
348
+ # Create deployment pipeline
349
+ pipe =fcc.create_deployment_pipeline(display_name="sdktestpipeline",
350
+ description="Test Deployment Pipeline Description",
351
+ stages=stages)
352
+ pipe_id = pipe.id
321
353
 
322
- depl_pipes = fc.list_deployment_pipelines()
354
+ for stage in pipe.stages:
355
+ if stage["displayName"] == "Development":
356
+ dev_stage = stage
357
+ else:
358
+ prod_stage = stage
323
359
 
324
- pipe = [pipe for pipe in depl_pipes if pipe.display_name == 'sdkpipe'][0]
325
- pipe_id = pipe.id
360
+ # Get deployment pipeline
361
+ stage = fcc.get_deployment_pipeline_stage(deployment_pipeline_id=pipe_id,
362
+ stage_id=dev_stage["id"])
326
363
 
327
- # Get a deployment pipeline
328
- pipe = fc.get_deployment_pipeline(pipe_id)
364
+ # Assign workspace to stage
365
+ resp = fcc.assign_workspace_to_stage(deployment_pipeline_id=pipe_id,
366
+ stage_id=dev_stage["id"],
367
+ workspace_id=workspace_id)
329
368
 
330
369
 
331
- # Get deployment pipeline stages
332
- stages = fc.list_deployment_pipeline_stages(pipe_id)
370
+ resp = fcc.assign_workspace_to_stage(deployment_pipeline_id=pipe_id,
371
+ stage_id=prod_stage["id"],
372
+ workspace_id=prod_workspace.id)
333
373
 
334
- names = [stage.display_name for stage in stages]
374
+ # Add deployment pipeline role assignment
375
+ principal = {
376
+ "id": user_id,
377
+ "type": "User"
378
+ }
335
379
 
336
- dev_stage = [stage for stage in stages if stage.display_name == "Development"][0]
337
- prod_stage = [stage for stage in stages if stage.display_name == "Production"][0]
380
+ resp = fcc.add_deployment_pipeline_role_assignment(deployment_pipeline_id=pipe_id,principal=principal, role="Admin")
338
381
 
339
- # Get deployment pipeline stages items
340
- items = fc.list_deployment_pipeline_stages_items(pipeline_id=pipe_id, stage_id=dev_stage.id)
382
+ # List deployment pipeline role assignments
383
+ roles = fcc.list_deployment_pipeline_role_assignments(deployment_pipeline_id=pipe_id)
341
384
 
385
+ # Delete deployment pipeline role assignment
386
+ resp = fcc.delete_deployment_pipeline_role_assignment(deployment_pipeline_id=pipe_id, principal_id=user_id)
342
387
 
343
- items = [item for item in dev_stage.get_items() if item["itemDisplayName"] == 'cicdlakehouse']
344
- item = items[0]
345
- item = {"sourceItemId": item["itemId"],
346
- "itemType": item["itemType"]}
347
- items = [item]
388
+ # List deployment pipelines
389
+ pipes = fcc.list_deployment_pipelines(with_details=False)
390
+ sdk_pipes = [pipe for pipe in pipes if "sdk" in pipe["displayName"]]
348
391
 
349
392
  # Deploy stage content
350
- response = pipe.deploy(source_stage_id=dev_stage.id,target_stage_id=prod_stage.id, items=items)
393
+ resp = fcc.deploy_stage_content(deployment_pipeline_id=pipe_id,
394
+ source_stage_id=dev_stage["id"],
395
+ target_stage_id=prod_stage["id"], wait_for_completion=False)
396
+
397
+ # List deployment pipeline operations
398
+ ops = fcc.list_deployment_pipeline_operations(deployment_pipeline_id=pipe_id)
399
+
400
+ # Get deployment pipeline operation
401
+ ops = fcc.get_deployment_pipeline_operation(deployment_pipeline_id=pipe_id, operation_id=ops[0]["id"])
351
402
 
403
+ # List deployment pipeline stages
404
+ stages = fcc.list_deployment_pipeline_stages(deployment_pipeline_id=pipe_id)
405
+
406
+ # List deployment pipeline stage items
407
+ items = fcc.list_deployment_pipeline_stage_items(deployment_pipeline_id=pipe_id, stage_id=dev_stage["id"])
408
+
409
+ # Update deployment pipeline
410
+ updated_pipe = fcc.update_deployment_pipeline(deployment_pipeline_id=pipe.id, display_name="sdknewname", description="newdescription")
411
+
412
+ # Get deployment pipeline
413
+ pipe = fcc.get_deployment_pipeline(pipe_id)
414
+
415
+ # Update deployment pipeline stage
416
+ updated_stage = fcc.update_deployment_pipeline_stage(deployment_pipeline_id=pipe_id, stage_id=prod_stage["id"],
417
+ display_name="newname", description="newdescription")
418
+
419
+ # Get deployment pipeline stage
420
+ stage = fcc.get_deployment_pipeline_stage(deployment_pipeline_id=pipe_id, stage_id=prod_stage["id"])
421
+
422
+ # Unassign workspace from stage
423
+ resp = fcc.unassign_workspace_from_stage(deployment_pipeline_id=pipe_id,stage_id=prod_stage["id"])
424
+
425
+ # Delete deployment pipeline
426
+ resp = fcc.delete_deployment_pipeline(deployment_pipeline_id=pipe_id)
352
427
  ```
353
428
 
354
- ### External Data Shares
429
+ ### External Data Shares Provider
355
430
 
356
431
  ```python
357
432
  from msfabricpysdkcore.coreapi import FabricClientCore
@@ -387,6 +462,36 @@ response_code = fc.revoke_external_data_share(workspace_id, item_id, data_share[
387
462
 
388
463
  ```
389
464
 
465
+ ### External Data Shares Recipient
466
+
467
+ ```python
468
+ from msfabricpysdkcore.coreapi import FabricClientCore
469
+ fcc = FabricClientCore()
470
+
471
+ # Accept external data share invitation
472
+ invitation_id = "adfasdfsd"
473
+ workspace_id = "asdfsdf"
474
+ item_id = "asdfsdf"
475
+ provider_tenant_id = "asdfsdf"
476
+ payload = {
477
+ "payloadType": "ShortcutCreation",
478
+ "path": "Files/DataFromContoso",
479
+ "createShortcutRequests": [
480
+ {
481
+ "pathId": "5c95314c-ef86-4663-9f1e-dee186f38715",
482
+ "shortcutName": "Shortcut_To_Contoso_Sales_2023"
483
+ },
484
+ {
485
+ "pathId": "6c95314c-ef86-4663-9f1e-dee186f38716",
486
+ "shortcutName": "Shortcut_To_Contoso_Sales_2024"
487
+ }
488
+ ]
489
+ }
490
+ obj = fcc.accept_external_data_share_invitation(invitation_id=invitation_id, item_id=item_id,payload=payload, provider_tenant_id=provider_tenant_id,workspace_id=workspace_id):
491
+
492
+ # Get external data share invitation details
493
+ details = fcc.get_external_data_share_invitation(invitation_id=invitation_id, provider_tenant_id=provider_tenant_id)
494
+ ```
390
495
 
391
496
  ### Working with items
392
497
 
@@ -434,6 +539,36 @@ ws.delete_item(item_id="item_id")
434
539
  # or
435
540
  item.delete()
436
541
 
542
+ ```
543
+
544
+ ### Folders
545
+ ```python
546
+ from msfabricpysdkcore import FabricClientCore
547
+ fcc = FabricClientCore()
548
+
549
+
550
+ workspace_id = "asdfasfd"
551
+ folder_id = "asdfasdff"
552
+
553
+ # Create a folder
554
+ folder = fcc.create_folder(workspace_id=workspace_id, display_name="sdk_sub_folder", parent_folder_id=folder_id)
555
+
556
+ # Get a folder
557
+ folder_ = fcc.get_folder(workspace_id=workspace_id, folder_id=folder.id)
558
+
559
+ # List folders
560
+ folders = fcc.list_folders(workspace_id=workspace_id)
561
+
562
+ # Update a folder
563
+ folder = fcc.update_folder(workspace_id=workspace_id, folder_id=folder.id, display_name="sdk_sub_folder_updated")
564
+
565
+ # Move a folder
566
+ folder = fcc.move_folder(workspace_id=workspace_id, folder_id=folder.id)
567
+
568
+ # Delete a folder
569
+ fcc.delete_folder(workspace_id=workspace_id, folder_id=folder.id)
570
+
571
+
437
572
  ```
438
573
 
439
574
  ### Gateways
@@ -641,6 +776,24 @@ fc.reset_shortcut_cache(workspace_id="23232", wait_for_completion = False)
641
776
 
642
777
  ```
643
778
 
779
+ ### Tags
780
+
781
+ ```python
782
+ from msfabricpysdkcore import FabricClientCore
783
+ fcc = FabricClientCore()
784
+
785
+ # List tags
786
+ tags = fcc.list_tags()
787
+
788
+ tag_ids = [tag["id"] for tag in tags]
789
+
790
+ # Apply tags
791
+ resp = fcc.apply_tags(workspace_id = "adsfsdf", item_id = "a9e59ec1-524b-49b1-a185-37e47dc0ceb9", tags = tag_ids)
792
+
793
+ # Unapply tags
794
+ resp = fcc.unapply_tags(workspace_id = "adsfsdf", item_id = "a9e59ec1-524b-49b1-a185-37e47dc0ceb9", tags = tag_ids)
795
+
796
+ ```
644
797
 
645
798
  ### Working with job scheduler
646
799
 
@@ -822,6 +975,54 @@ access_entities = fca.list_access_entities(user_id, type="Notebook")
822
975
 
823
976
  ```
824
977
 
978
+ ### Admin API for Sharing Links
979
+
980
+ ```python
981
+ from msfabricpysdkcore import FabricClientAdmin
982
+ fca = FabricClientAdmin()
983
+
984
+ items = [
985
+ {
986
+ "id": "fe472f5e-636e-4c10-a1c6-7e9edc0b542a",
987
+ "type": "Report"
988
+ },
989
+ {
990
+ "id": "476fcafe-b514-495d-b13f-ca9a4f0b1d8b",
991
+ "type": "Report"
992
+ }]
993
+
994
+ # Bulk remove sharing links
995
+ fca.bulk_remove_sharing_links(items = items, sharing_link_type = "OrgLink")
996
+
997
+ # Remove all sharing links
998
+ fca.remove_all_sharing_links(sharing_link_type = "OrgLink")
999
+ ```
1000
+
1001
+ ### Admin API for Tags
1002
+
1003
+ ```python
1004
+
1005
+ from msfabricpysdkcore import FabricClientAdmin
1006
+
1007
+ fca = FabricClientAdmin()
1008
+
1009
+ # Bulk create tags
1010
+ new_tags = [{"displayName": "sdk_tag_temp"}]
1011
+ resp = fca.bulk_create_tags(create_tags_request=new_tags)
1012
+
1013
+ # Delete tag
1014
+ fca.delete_tag(tag_id="adsfasdf")
1015
+
1016
+ # List tags
1017
+ tag_list = fca.list_tags()
1018
+
1019
+ # Update Tag
1020
+ updated_tag = fca.update_tag(tag_id="adsfasdf", display_name="sdk_tag_updated")
1021
+
1022
+
1023
+ ```
1024
+
1025
+
825
1026
  ### Admin API for Tenants
826
1027
 
827
1028
  ```python
@@ -1,35 +1,43 @@
1
1
  msfabricpysdkcore/__init__.py,sha256=ObRW5Q8IMqrvA6VH6zXSv3n01AzRCGjn5RojJXAR6VE,208
2
2
  msfabricpysdkcore/admin_item.py,sha256=9L09Kb7kn7JW0bqVu1qPOMT6oHLduX4Q5_qhVJZTLxQ,3290
3
3
  msfabricpysdkcore/admin_workspace.py,sha256=umNnIF8sf5Y8BDgfQdfG6sOZrQQc7RJINL9j8DPnm3c,3180
4
- msfabricpysdkcore/adminapi.py,sha256=eJNI9BiMl93ms60APGZSKK8OGZF-0XFWdsTW4vooyUM,35341
4
+ msfabricpysdkcore/adminapi.py,sha256=ldne1ML_t_o42WGwz9UNJM_qEaT9kjtmypexY3ECpZE,39930
5
5
  msfabricpysdkcore/auth.py,sha256=Y9YUDqoArvkD7rLnbQvNBnCXqHJtw6PDRUHMx0CVMT0,4330
6
6
  msfabricpysdkcore/capacity.py,sha256=Q_2-XrZtdf9F67fY0qU3D0ocEOGQq4KtIXAv9dXjQhI,1761
7
7
  msfabricpysdkcore/client.py,sha256=KpHREbfzQRRighyJzyES3COZP3raK0C1-WhxGd07LHU,7890
8
- msfabricpysdkcore/coreapi.py,sha256=GW-dIiNZIj2S9-49Sej2HgpubSToIqj1THAlWoDP9xE,200762
9
- msfabricpysdkcore/deployment_pipeline.py,sha256=2d7BqRPgfBiAlQOP4UfYLmFMM8xonSjPkJKhevIKGEY,5756
8
+ msfabricpysdkcore/coreapi.py,sha256=M4-n_6Qelj3obK_OaLZ1wJa9MMY-GT75-hYymHGFrTE,258752
9
+ msfabricpysdkcore/deployment_pipeline.py,sha256=0yTLwSJZDSLF5LU882GuTs-_KZkMDP_k5l_GAV1nf-Y,10156
10
10
  msfabricpysdkcore/domain.py,sha256=MAv7R64waQgI3OF1f5hmMdH98pJIb-BPTCZSvPZDzgU,7061
11
11
  msfabricpysdkcore/environment.py,sha256=4k2Le1mAQIrfcpNc3n1DbgdCzAldGTSTCbiDQGk0DlA,2784
12
+ msfabricpysdkcore/eventstream.py,sha256=e9u16sVARI0yUktzY5oaj3R-QvJXGpP6lPH-TFzbVvU,4517
12
13
  msfabricpysdkcore/fabric_azure_capacity.py,sha256=7JxMp9weiKG_mDjlRK-88oIXr0kdG0pzv-Ouycf3fus,2808
13
14
  msfabricpysdkcore/fabric_azure_client.py,sha256=I7Z0Y8Xy_esQcPaXgPL7EAkQmoQkAklJO4hxk_90dno,10722
14
- msfabricpysdkcore/item.py,sha256=37M_hWZ3AHLhifO0I1wj7nYStQQ14JpHfe5SBxQyicY,8992
15
+ msfabricpysdkcore/folder.py,sha256=-nop7KsVr9Nha_tY1nlOwkpjzVd6QfaR2nZG7mgLcvU,2782
16
+ msfabricpysdkcore/item.py,sha256=75RphdDpMNMbF0Ajz35wkrpzmuLdoKeZiu671A-mw1E,9405
15
17
  msfabricpysdkcore/job_instance.py,sha256=rtZp-OpuzfdMiQyuQLum38lgcfSZJTr3s9sECZglcWg,2389
16
- msfabricpysdkcore/lakehouse.py,sha256=yIrzatWM9emPn-Y54Cg_ZdAydIWjxrpK65jIQ4SClgE,1703
18
+ msfabricpysdkcore/lakehouse.py,sha256=iYjj4EUJ9ylVw6f0BAguuFeHRxwSAIasFqbTlRIse7A,2081
17
19
  msfabricpysdkcore/long_running_operation.py,sha256=XTlsueSZKVFICxhx99geEQ6btZFlFb8-lssigmQ9c6Y,2133
18
20
  msfabricpysdkcore/onelakeshortcut.py,sha256=H02wR6Z86qTEJOwVRMKz1Ou3K88Y9pfJa91vizjprvo,1661
19
- msfabricpysdkcore/otheritems.py,sha256=r6YalCheej8R0vmM50kMAtsRshdaWJ3R7bsMzRXheUk,20848
21
+ msfabricpysdkcore/otheritems.py,sha256=Kf-ccP9fuAGdIZE6jPX7MACfudqlNQLhcpNy8nH6T_I,22233
20
22
  msfabricpysdkcore/spark_custom_pool.py,sha256=YsEULaQG-FO507aPIb-4kk93ZWBmDZj6fbOEHYoyxHE,3188
21
- msfabricpysdkcore/workspace.py,sha256=22FfhDW3afUIXs7yeVnSVjLoPfbHZXrAnEcV5CcFx8o,59432
23
+ msfabricpysdkcore/workspace.py,sha256=GD4QRN8pcPKmXBuCXlaO0rmfTTOi4Q6BOere7zmqnNk,78687
22
24
  msfabricpysdkcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
25
  msfabricpysdkcore/tests/test_admin_apis.py,sha256=J3LmrQkGtgBcVf7ScmuNDvpLSJjMAO3sXKkmowF_HNk,6852
26
+ msfabricpysdkcore/tests/test_admin_tags.py,sha256=DRfoRJ7TUn6BcJdeV-xcEUifu8-_LGiM_9jmWEqRpqs,1564
24
27
  msfabricpysdkcore/tests/test_connection.py,sha256=jmwvRwfp81-a3eHjC_rBFgBJJihZ63qXVdfilTaxHYw,4491
25
- msfabricpysdkcore/tests/test_datapipelines.py,sha256=OcqudrkR9XD0ce8by2EMoAILplH5OG2P7l-u6Fpmllw,1774
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
26
31
  msfabricpysdkcore/tests/test_deployment_pipeline.py,sha256=J7szEWrw26U91O6hSooUAJ2eNorDo-x55lPgr00J-gU,2072
32
+ msfabricpysdkcore/tests/test_deployment_pipelinev2.py,sha256=QxydDk-mwmDFX9Iof1dFJn_fnQ5g6okKgjZXow4WIIo,5641
27
33
  msfabricpysdkcore/tests/test_domains.py,sha256=KQIzziiQcnNjrgUlV8Ei_HT41LwaJCI5AnWsIHmEQxI,4711
28
34
  msfabricpysdkcore/tests/test_environments.py,sha256=EDyS-pbLVI5AVEq0_JklpDe5lc_tdsPAPf1n4Gm3rbo,5132
29
35
  msfabricpysdkcore/tests/test_evenhouses.py,sha256=xl9AWV4-H69IwHvrzoF4T_mDNuaUsVoRAI5171tIPcg,2283
30
36
  msfabricpysdkcore/tests/test_evenstreams.py,sha256=nTvDwhkuHewkjETDK3hk2KjbFBfOCWiBTGStoiXSiYk,2013
37
+ msfabricpysdkcore/tests/test_eventstream_topology.py,sha256=V69pVWBsiyGCW2WBmD_AXOvVszbk4oDKw7u2pa09IwI,3112
31
38
  msfabricpysdkcore/tests/test_external_data_shares.py,sha256=YqFiVFSWhVW7pLc0DC6Em4GFOGkok2Gezk8llPOtsv0,1550
32
39
  msfabricpysdkcore/tests/test_fabric_azure_client.py,sha256=_dTc3vLILwXstvDs3TUFg3aCY-14CiI4cZ5-EdEtqJY,3099
40
+ msfabricpysdkcore/tests/test_folders.py,sha256=LOverLUKMAwRQPvmA6ltfPdILmzm2UnysKcZmEu0CFc,1783
33
41
  msfabricpysdkcore/tests/test_gateways.py,sha256=xR5kpgxeW_PmTvcRdUITNCRGMJCgJTQfN9GGeY6bvuE,3685
34
42
  msfabricpysdkcore/tests/test_git.py,sha256=KIME3KzqnDNmmsg4M4GhhDqeVqeMXy4iVA6MJOOmrlE,2567
35
43
  msfabricpysdkcore/tests/test_graphqlapi.py,sha256=NGAIfh0GjAtgKybTNCgHa2Fs2AwR34_pP6QGAgJ7Wpw,1633
@@ -54,12 +62,14 @@ msfabricpysdkcore/tests/test_shortcuts.py,sha256=1ANIi8PCZCLDR2yFE0MyZvGIUxS-aJR
54
62
  msfabricpysdkcore/tests/test_spark.py,sha256=faoVF3AuUCyfk2PvVccPngafyAkhq2SAj87KmESUwx0,3546
55
63
  msfabricpysdkcore/tests/test_sparkjobdefinition.py,sha256=SANfiOLgwKRGnQN9ArEwv0fyXM12glEn9BG4jIL4W-c,2838
56
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
57
67
  msfabricpysdkcore/tests/test_warehouses.py,sha256=CKF2kJMe-JSOWWok3dR_hn5HNwz9GtKoYT4fP59mTPk,1813
58
68
  msfabricpysdkcore/tests/test_workspaces_capacities.py,sha256=V5ePndbtLVyYNa8Kug1Ul0oOF-Jd6DXEl8PclgfLhuw,6822
59
69
  msfabricpysdkcore/util/__init__.py,sha256=p-1dC4AurfKdIUppNVlRCIcmwHBTURqfgIwxcie3fEA,50
60
70
  msfabricpysdkcore/util/logger.py,sha256=XXdeaqI-BhXZgacChKrWP88TPU4FTWvS8L0YWjCT54A,1166
61
- msfabricpysdkcore-0.2.3.dist-info/licenses/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
62
- msfabricpysdkcore-0.2.3.dist-info/METADATA,sha256=G8XXu-pIWd0p1MPp0hv2ZA0DH7zZZj9w2ypQWcKuL58,33595
63
- msfabricpysdkcore-0.2.3.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
64
- msfabricpysdkcore-0.2.3.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
65
- msfabricpysdkcore-0.2.3.dist-info/RECORD,,
71
+ msfabricpysdkcore-0.2.5.dist-info/licenses/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
72
+ msfabricpysdkcore-0.2.5.dist-info/METADATA,sha256=A0D3cCgmHOhA4BjlezkxOTB_PEskDPY4FcP1vg8jrYg,39753
73
+ msfabricpysdkcore-0.2.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
74
+ msfabricpysdkcore-0.2.5.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
75
+ msfabricpysdkcore-0.2.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5