msfabricpysdkcore 0.0.13__py3-none-any.whl → 0.1.2__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/__init__.py +2 -1
- msfabricpysdkcore/admin_item.py +19 -45
- msfabricpysdkcore/admin_workspace.py +13 -60
- msfabricpysdkcore/adminapi.py +401 -476
- msfabricpysdkcore/auth.py +10 -6
- msfabricpysdkcore/client.py +124 -7
- msfabricpysdkcore/coreapi.py +2570 -822
- msfabricpysdkcore/deployment_pipeline.py +34 -146
- msfabricpysdkcore/domain.py +20 -219
- msfabricpysdkcore/environment.py +13 -172
- msfabricpysdkcore/fabric_azure_capacity.py +77 -0
- msfabricpysdkcore/fabric_azure_client.py +228 -0
- msfabricpysdkcore/item.py +55 -331
- msfabricpysdkcore/job_instance.py +8 -22
- msfabricpysdkcore/lakehouse.py +9 -118
- msfabricpysdkcore/long_running_operation.py +7 -37
- msfabricpysdkcore/onelakeshortcut.py +7 -21
- msfabricpysdkcore/otheritems.py +66 -91
- msfabricpysdkcore/spark_custom_pool.py +7 -47
- msfabricpysdkcore/tests/test_admin_apis.py +9 -10
- msfabricpysdkcore/tests/test_datapipelines.py +15 -18
- msfabricpysdkcore/tests/test_deployment_pipeline.py +3 -3
- msfabricpysdkcore/tests/test_domains.py +6 -5
- msfabricpysdkcore/tests/test_environments.py +54 -5
- msfabricpysdkcore/tests/test_evenhouses.py +47 -0
- msfabricpysdkcore/tests/test_evenstreams.py +20 -20
- msfabricpysdkcore/tests/test_external_data_shares.py +3 -3
- msfabricpysdkcore/tests/test_fabric_azure_client.py +78 -0
- msfabricpysdkcore/tests/test_git.py +8 -9
- msfabricpysdkcore/tests/test_items.py +81 -0
- msfabricpysdkcore/tests/test_jobs.py +2 -2
- msfabricpysdkcore/tests/test_kql_queryset.py +49 -0
- msfabricpysdkcore/tests/test_kqldatabases.py +3 -3
- msfabricpysdkcore/tests/test_lakehouse.py +84 -0
- msfabricpysdkcore/tests/test_ml_experiments.py +47 -0
- msfabricpysdkcore/tests/test_ml_models.py +47 -0
- msfabricpysdkcore/tests/test_notebooks.py +57 -0
- msfabricpysdkcore/tests/test_one_lake_data_access_security.py +2 -4
- msfabricpysdkcore/tests/test_other_items.py +45 -0
- msfabricpysdkcore/tests/test_reports.py +52 -0
- msfabricpysdkcore/tests/test_semantic_model.py +50 -0
- msfabricpysdkcore/tests/test_shortcuts.py +4 -4
- msfabricpysdkcore/tests/test_spark.py +9 -9
- msfabricpysdkcore/tests/test_sparkjobdefinition.py +2 -2
- msfabricpysdkcore/tests/test_warehouses.py +50 -0
- msfabricpysdkcore/tests/test_workspaces_capacities.py +16 -13
- msfabricpysdkcore/workspace.py +397 -1163
- {msfabricpysdkcore-0.0.13.dist-info → msfabricpysdkcore-0.1.2.dist-info}/METADATA +72 -10
- msfabricpysdkcore-0.1.2.dist-info/RECORD +55 -0
- {msfabricpysdkcore-0.0.13.dist-info → msfabricpysdkcore-0.1.2.dist-info}/WHEEL +1 -1
- msfabricpysdkcore-0.0.13.dist-info/RECORD +0 -41
- {msfabricpysdkcore-0.0.13.dist-info → msfabricpysdkcore-0.1.2.dist-info}/LICENSE +0 -0
- {msfabricpysdkcore-0.0.13.dist-info → msfabricpysdkcore-0.1.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: msfabricpysdkcore
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.1.2
|
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
|
@@ -15,16 +15,17 @@ Requires-Dist: azure-identity >=1.15.0
|
|
15
15
|
|
16
16
|
# Python SDK for Microsoft Fabric
|
17
17
|
|
18
|
-
This is a Python SDK for Microsoft Fabric. It is a wrapper around the REST APIs (v1) of Fabric*.
|
18
|
+
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 July 23, 2024).
|
19
19
|
|
20
20
|

|
21
21
|
|
22
22
|
The Microsoft Fabric REST APIs are documented [here](https://docs.microsoft.com/en-us/rest/api/fabric/).
|
23
|
+
The Azure Resoure Management APIs for Fabric are documented [here](https://learn.microsoft.com/en-us/rest/api/microsoftfabric/fabric-capacities?view=rest-microsoftfabric-2023-11-01).
|
23
24
|
They are designed to automate your Fabric processes.
|
24
25
|
|
25
26
|
This SDK helps to interact with the Fabric APIs in a more Pythonic way.
|
26
27
|
Additionally it brings some extra features like:
|
27
|
-
- Authentication is handled for you (currently Azure CLI Authentication
|
28
|
+
- Authentication is handled for you (currently Azure CLI Authentication, Authentication from a Microsoft Fabric notebook and Service Principal Authentication are supported)
|
28
29
|
- Waiting for completion of long running operations
|
29
30
|
- Retry logic when hitting the API rate limits
|
30
31
|
- Referencing objects by name instead of ID
|
@@ -34,7 +35,7 @@ Additionally it brings some extra features like:
|
|
34
35
|
|
35
36
|
See the latest release notes [here](releasenotes/release_notes.md).
|
36
37
|
|
37
|
-
Currently it supports all Core APIs, Admin APIs,
|
38
|
+
Currently it supports all Core APIs, Admin APIs, all item specific CRUD APIs and Azure Resource Management APIs for Fabric capacities, i.e.:
|
38
39
|
- Core APIs
|
39
40
|
- [Capacities](#working-with-capacities)
|
40
41
|
- [Deployment Pipelines](#deployment-pipelines)
|
@@ -58,6 +59,7 @@ Currently it supports all Core APIs, Admin APIs, Lakehouse APIs and all other it
|
|
58
59
|
- List, create, update, delete warehouses, notebooks, semantic models, kql databases,.....
|
59
60
|
- Lakehouse operations (Load table, list tables, run table maintenance)
|
60
61
|
- Spark Pool operations
|
62
|
+
- [Azure Resource Management APIs for Fabric capacities](#azure-resource-management-apis-for-fabric-capacities)
|
61
63
|
|
62
64
|
It is planned to support also new APIs which are not released yet.
|
63
65
|
Also we have plans to support APIs to interact with Fabric capacities on the Azure Side.
|
@@ -85,6 +87,7 @@ from msfabricpysdkcore import FabricClientCore
|
|
85
87
|
# Create a client
|
86
88
|
|
87
89
|
# Either login with the Azure CLI first and initiate the client directly
|
90
|
+
# This also works directly in a Microsoft Fabric notebook
|
88
91
|
fc = FabricClientCore()
|
89
92
|
|
90
93
|
# Or use a service principal (note that not all APIs are supported with service principal)
|
@@ -99,7 +102,12 @@ fc = FabricClientCore(tenant_id = "tenant_id",
|
|
99
102
|
|
100
103
|
|
101
104
|
```
|
105
|
+
### Getting a token
|
106
|
+
```python
|
107
|
+
# Getting a token
|
102
108
|
|
109
|
+
token = fc.get_token()
|
110
|
+
```
|
103
111
|
### Working with workspaces
|
104
112
|
|
105
113
|
```python
|
@@ -230,7 +238,7 @@ pipe = fc.get_deployment_pipeline(pipe_id)
|
|
230
238
|
|
231
239
|
|
232
240
|
# Get deployment pipeline stages
|
233
|
-
stages = fc.
|
241
|
+
stages = fc.list_deployment_pipeline_stages(pipe_id)
|
234
242
|
|
235
243
|
names = [stage.display_name for stage in stages]
|
236
244
|
|
@@ -238,7 +246,7 @@ dev_stage = [stage for stage in stages if stage.display_name == "Development"][0
|
|
238
246
|
prod_stage = [stage for stage in stages if stage.display_name == "Production"][0]
|
239
247
|
|
240
248
|
# Get deployment pipeline stages items
|
241
|
-
items = fc.
|
249
|
+
items = fc.list_deployment_pipeline_stages_items(pipeline_id=pipe_id, stage_id=dev_stage.id)
|
242
250
|
|
243
251
|
|
244
252
|
items = [item for item in dev_stage.get_items() if item["itemDisplayName"] == 'cicdlakehouse']
|
@@ -312,11 +320,11 @@ item_list = ws.list_items()
|
|
312
320
|
|
313
321
|
|
314
322
|
# Update an item
|
315
|
-
fc.update_item(workspace_id="workspace_id", item_id="item_id" display_name="new_item_name", description = None)
|
323
|
+
fc.update_item(workspace_id="workspace_id", item_id="item_id" display_name="new_item_name", description = None, return_item=True)
|
316
324
|
# or
|
317
|
-
ws.update_item(item_id="item_id", display_name="new_item_name", description = None)
|
325
|
+
ws.update_item(item_id="item_id", display_name="new_item_name", description = None, return_item=True)
|
318
326
|
# or
|
319
|
-
item.update(display_name="new_item_name", description = None)
|
327
|
+
item.update(display_name="new_item_name", description = None, return_item=True)
|
320
328
|
|
321
329
|
|
322
330
|
# Delete an item
|
@@ -654,7 +662,7 @@ domains = fca.list_domains()
|
|
654
662
|
|
655
663
|
# Update domain
|
656
664
|
domain_new_name = "sdktestdomains2"
|
657
|
-
domain_clone = fca.update_domain(domain.id, display_name=domain_new_name)
|
665
|
+
domain_clone = fca.update_domain(domain.id, display_name=domain_new_name, return_item=True)
|
658
666
|
|
659
667
|
# Assign domain workspaces by Ids
|
660
668
|
fca.assign_domain_workspaces_by_ids(domain.id, ["workspace_id_1", "workspace_id_2"])
|
@@ -715,3 +723,57 @@ fca.revoke_external_data_share(external_data_share_id = data_shares[0]['id'],
|
|
715
723
|
|
716
724
|
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.
|
717
725
|
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.
|
726
|
+
|
727
|
+
|
728
|
+
### Azure Resource Management APIs for Fabric capacities
|
729
|
+
|
730
|
+
```python
|
731
|
+
from msfabricpysdkcore import FabricAzureClient
|
732
|
+
|
733
|
+
fac = FabricAzureClient()
|
734
|
+
|
735
|
+
subscription_id = "fsdgdfgds"
|
736
|
+
resource_group_name = "fabricdemo"
|
737
|
+
capacity_name = "rgsdfgsdfgsd"
|
738
|
+
capacity_name_new = "dsfgsdfgsdfg" + datetime.now().strftime("%Y%m%d%H%M%S")
|
739
|
+
|
740
|
+
# Check name availability
|
741
|
+
|
742
|
+
resp = fac.check_name_availability(subscription_id, "westeurope", capacity_name_new)
|
743
|
+
|
744
|
+
# Create or update capacity
|
745
|
+
resp = fac.create_or_update_capacity(subscription_id, resource_group_name, capacity_name_new,
|
746
|
+
location="westeurope",
|
747
|
+
properties_administration={"members": ['admin@MngEnvMCAP065039.onmicrosoft.com']},
|
748
|
+
sku = "F2")
|
749
|
+
|
750
|
+
# Get capacity
|
751
|
+
resp = fac.get_capacity(subscription_id, resource_group_name, capacity_name_new)
|
752
|
+
sku = resp.sku['name']
|
753
|
+
|
754
|
+
# Delete capacity
|
755
|
+
resp = fac.delete_capacity(subscription_id, resource_group_name, capacity_name_new)
|
756
|
+
|
757
|
+
# List capacities by resource group
|
758
|
+
resp = fac.list_by_resource_group(subscription_id, resource_group_name)
|
759
|
+
cap_names = [cap["name"] for cap in resp]
|
760
|
+
|
761
|
+
# List capacities by subscription
|
762
|
+
resp = fac.list_by_subscription(subscription_id)
|
763
|
+
cap_names = [cap["name"] for cap in resp]
|
764
|
+
|
765
|
+
# List SKUs
|
766
|
+
resp = fac.list_skus(subscription_id)
|
767
|
+
|
768
|
+
# List SKUs for capacity
|
769
|
+
resp = fac.list_skus_for_capacity(subscription_id, resource_group_name, capacity_name)
|
770
|
+
|
771
|
+
# Resume capacity
|
772
|
+
resp = fac.resume_capacity(subscription_id, resource_group_name, capacity_name)
|
773
|
+
|
774
|
+
# Suspend capacity
|
775
|
+
resp = fac.suspend_capacity(subscription_id, resource_group_name, capacity_name)
|
776
|
+
|
777
|
+
# Update capacity
|
778
|
+
resp = fac.update_capacity(subscription_id, resource_group_name, capacity_name, sku="F4")
|
779
|
+
```
|
@@ -0,0 +1,55 @@
|
|
1
|
+
msfabricpysdkcore/__init__.py,sha256=Fzsq8smYJQ7VhlFwfljQNnIPkWLg20sKPTzXNMuaahE,130
|
2
|
+
msfabricpysdkcore/admin_item.py,sha256=9L09Kb7kn7JW0bqVu1qPOMT6oHLduX4Q5_qhVJZTLxQ,3290
|
3
|
+
msfabricpysdkcore/admin_workspace.py,sha256=umNnIF8sf5Y8BDgfQdfG6sOZrQQc7RJINL9j8DPnm3c,3180
|
4
|
+
msfabricpysdkcore/adminapi.py,sha256=4OUK4mo6-YXnKoy5O-uz2-aqnrPLzQ6iGHntZNxJ150,25955
|
5
|
+
msfabricpysdkcore/auth.py,sha256=DP66ap1cRlA3s8JijFRCc1b10Cc9uNM9GoD3RBKrKDQ,2612
|
6
|
+
msfabricpysdkcore/capacity.py,sha256=Q_2-XrZtdf9F67fY0qU3D0ocEOGQq4KtIXAv9dXjQhI,1761
|
7
|
+
msfabricpysdkcore/client.py,sha256=j4PPTARLsOQC7CXD50moj1tOed1txF-p861OELlB_WY,6756
|
8
|
+
msfabricpysdkcore/coreapi.py,sha256=4yxnHRnK9QLTKtbbIcDCmxUKvfptTPmA4uJ6GkECEhs,131385
|
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/fabric_azure_capacity.py,sha256=7JxMp9weiKG_mDjlRK-88oIXr0kdG0pzv-Ouycf3fus,2808
|
13
|
+
msfabricpysdkcore/fabric_azure_client.py,sha256=ymNvmYrECTeszesKFM66n3NbAGzY6LfW9vToiP-UQ1o,10415
|
14
|
+
msfabricpysdkcore/item.py,sha256=3ixgRDTmrKXw82xl1MkaaOQ2986s2_DFEJQeUkKPcEU,6376
|
15
|
+
msfabricpysdkcore/job_instance.py,sha256=HXSUVoE4XaG2Ic5RYZ1Mx3ymiIarHDAnyjaXXY4Aj74,2381
|
16
|
+
msfabricpysdkcore/lakehouse.py,sha256=yIrzatWM9emPn-Y54Cg_ZdAydIWjxrpK65jIQ4SClgE,1703
|
17
|
+
msfabricpysdkcore/long_running_operation.py,sha256=RJeExL1R8gqJ1b6TTUMn7CqLr_YH0vhEc3QJ8RsxZrI,1868
|
18
|
+
msfabricpysdkcore/onelakeshortcut.py,sha256=H02wR6Z86qTEJOwVRMKz1Ou3K88Y9pfJa91vizjprvo,1661
|
19
|
+
msfabricpysdkcore/otheritems.py,sha256=rkIbF-LxUUZh0ZDqFiWeutMeIsBXw_R8UUCglIifWBQ,12024
|
20
|
+
msfabricpysdkcore/spark_custom_pool.py,sha256=YsEULaQG-FO507aPIb-4kk93ZWBmDZj6fbOEHYoyxHE,3188
|
21
|
+
msfabricpysdkcore/workspace.py,sha256=7ZOt8ovlUOfusQ-avl4OOgMueN1XAp7AXdfpzAhXh3s,40428
|
22
|
+
msfabricpysdkcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
+
msfabricpysdkcore/tests/test_admin_apis.py,sha256=SVabeu0z_935R9oSwgK8omnqdd9qKxFF05-myGr1Sk8,3346
|
24
|
+
msfabricpysdkcore/tests/test_datapipelines.py,sha256=OcqudrkR9XD0ce8by2EMoAILplH5OG2P7l-u6Fpmllw,1774
|
25
|
+
msfabricpysdkcore/tests/test_deployment_pipeline.py,sha256=J7szEWrw26U91O6hSooUAJ2eNorDo-x55lPgr00J-gU,2072
|
26
|
+
msfabricpysdkcore/tests/test_domains.py,sha256=KQIzziiQcnNjrgUlV8Ei_HT41LwaJCI5AnWsIHmEQxI,4711
|
27
|
+
msfabricpysdkcore/tests/test_environments.py,sha256=eayofNpH_RtWjPleD9le_DqWTuCEC0BjB3f4On6Qnlo,5116
|
28
|
+
msfabricpysdkcore/tests/test_evenhouses.py,sha256=AHhQmv-jelC7TIsvdLue_lsjMoVp4ZQSD2ttmWHeBDw,1820
|
29
|
+
msfabricpysdkcore/tests/test_evenstreams.py,sha256=5oXk7bByd3Xu367nCiNGVdR2bVUKef7diiwi1AF-WG0,1566
|
30
|
+
msfabricpysdkcore/tests/test_external_data_shares.py,sha256=YqFiVFSWhVW7pLc0DC6Em4GFOGkok2Gezk8llPOtsv0,1550
|
31
|
+
msfabricpysdkcore/tests/test_fabric_azure_client.py,sha256=1y5NYznM4I5kfvuWckjafKESTG9fbU_9PdXz1bJGegE,3078
|
32
|
+
msfabricpysdkcore/tests/test_git.py,sha256=NFQLsxDmEtVqf88Umz1ECoXPVWnOOkaTfsXFRSBk9oQ,2400
|
33
|
+
msfabricpysdkcore/tests/test_items.py,sha256=ziJ1oqo3z2ZMo63L0JuCz-uVS-ZnMt38DeU5QYHb4l8,3498
|
34
|
+
msfabricpysdkcore/tests/test_items_incl_lakehouse.py,sha256=zWNmOI_Ysh96d8P-Sm4IOCzMqXTCEBg63lxCDZZ_9b8,17987
|
35
|
+
msfabricpysdkcore/tests/test_jobs.py,sha256=WfFEtzvP2sLKlRUyNCIjn5zKozWaIZcNbbudk21pLhM,1632
|
36
|
+
msfabricpysdkcore/tests/test_kql_queryset.py,sha256=10_KIdaHhCP7eNo0fS2gmjwx49wPSgxSPM2OHyyX0fI,1906
|
37
|
+
msfabricpysdkcore/tests/test_kqldatabases.py,sha256=aU3xx0FkyZvMUEacNw5zrnDNDvn-IDnbzdDM_5KoPj4,1939
|
38
|
+
msfabricpysdkcore/tests/test_lakehouse.py,sha256=SQ-xsqtwdjgZ8I2Nwi0HCoVQfIw-4MLEA4Tsa5a8tcM,3366
|
39
|
+
msfabricpysdkcore/tests/test_ml_experiments.py,sha256=UJIQitJdUDRlmAmF2jdXuFPYvp8BsrpDyI2opyIBt8I,1897
|
40
|
+
msfabricpysdkcore/tests/test_ml_models.py,sha256=AilbnYXb9rTUZW5sPJ0HqFZxB5fkTb0t_qnRW1NhO_E,1723
|
41
|
+
msfabricpysdkcore/tests/test_notebooks.py,sha256=usk99tftcJb-3m8rjmpiFOD5Dqp3dd4e7RFEeUMkX7c,2280
|
42
|
+
msfabricpysdkcore/tests/test_one_lake_data_access_security.py,sha256=eto_F6oBRqggGgWVHQ52mB6D2G-Qr-y74Sx308aJDqc,2297
|
43
|
+
msfabricpysdkcore/tests/test_other_items.py,sha256=rGyL7QCn9Y_k_NIyctIIxwujtM5_MeMKJ3g6gU1CWM4,1772
|
44
|
+
msfabricpysdkcore/tests/test_reports.py,sha256=zlmtrNdF7qI14kn8xlxnnOmrejfTGPjcCAiUgpXXk9w,1889
|
45
|
+
msfabricpysdkcore/tests/test_semantic_model.py,sha256=gGbh4WxItoLr-EiGryveRfe5pa75kWkb4Ye4iLH4Jtc,2204
|
46
|
+
msfabricpysdkcore/tests/test_shortcuts.py,sha256=NYlwkEqab_Wn_kTJdKoeJDUQunc1c74FQopAMjwmrsA,2408
|
47
|
+
msfabricpysdkcore/tests/test_spark.py,sha256=faoVF3AuUCyfk2PvVccPngafyAkhq2SAj87KmESUwx0,3546
|
48
|
+
msfabricpysdkcore/tests/test_sparkjobdefinition.py,sha256=SANfiOLgwKRGnQN9ArEwv0fyXM12glEn9BG4jIL4W-c,2838
|
49
|
+
msfabricpysdkcore/tests/test_warehouses.py,sha256=CKF2kJMe-JSOWWok3dR_hn5HNwz9GtKoYT4fP59mTPk,1813
|
50
|
+
msfabricpysdkcore/tests/test_workspaces_capacities.py,sha256=V5ePndbtLVyYNa8Kug1Ul0oOF-Jd6DXEl8PclgfLhuw,6822
|
51
|
+
msfabricpysdkcore-0.1.2.dist-info/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
|
52
|
+
msfabricpysdkcore-0.1.2.dist-info/METADATA,sha256=XUMZZoSKu1pJEvvhF9a6IyE-HqtGnKM9SkT8iqxfN58,22852
|
53
|
+
msfabricpysdkcore-0.1.2.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
54
|
+
msfabricpysdkcore-0.1.2.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
|
55
|
+
msfabricpysdkcore-0.1.2.dist-info/RECORD,,
|
@@ -1,41 +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=g4q2KNYmMdp7HSrLJYM8rIWKMbmN0XUEDj_T8K-Ue4g,27920
|
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=UP13F3xdtv710PEVjZSv5txmvAOEMB-5U8Q26byEZFQ,51430
|
9
|
-
msfabricpysdkcore/deployment_pipeline.py,sha256=RFI86rtG-eTpV-_tVl3cXtcTl9ekRvOI5fLsXo9CMVA,9739
|
10
|
-
msfabricpysdkcore/domain.py,sha256=i8jMJEutDRL5XuQ69woCVQEzLS_lm9uUxl4Kp3xtxHc,14722
|
11
|
-
msfabricpysdkcore/environment.py,sha256=V4ASiGp-vkdMZYP5Syz8QNJtaez4TJFCzuNlRIxbArw,10182
|
12
|
-
msfabricpysdkcore/item.py,sha256=YCDYodA0yDNi5NdZSriGnb-lNdmav-PPPR7zTTnKR-w,18092
|
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=zDE9XHIY4yLYW5GmQY_ESKqxXlfb1MyloUv6QlqtiSY,70072
|
20
|
-
msfabricpysdkcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
|
-
msfabricpysdkcore/tests/test_admin_apis.py,sha256=8bod82lNeTx7HbLxxTxF1gBvn3O_pW_xk1ND-0S56pg,3415
|
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_external_data_shares.py,sha256=M3nbjNCZU5BDxXGt5649HQtIgaiK_U4hLvm770yVcSw,1550
|
28
|
-
msfabricpysdkcore/tests/test_git.py,sha256=pmhVYZGDMEFtgy51hKrDWqtea-MryyeyvPKVCaTsIEA,2415
|
29
|
-
msfabricpysdkcore/tests/test_items_incl_lakehouse.py,sha256=zWNmOI_Ysh96d8P-Sm4IOCzMqXTCEBg63lxCDZZ_9b8,17987
|
30
|
-
msfabricpysdkcore/tests/test_jobs.py,sha256=DC1nQTav_Re7uunRA07wD_56giLqe9KOsgm56Il8Zr4,1632
|
31
|
-
msfabricpysdkcore/tests/test_kqldatabases.py,sha256=Oc2ZzpQAVbiJeZ5ytwlP2Jb-tKe-2e9-1oA-upwRKBQ,1921
|
32
|
-
msfabricpysdkcore/tests/test_one_lake_data_access_security.py,sha256=GY5jm3Rz8WgPbUP7L8Y3V8sE4iV3LyyhGhLik__TX0w,2301
|
33
|
-
msfabricpysdkcore/tests/test_shortcuts.py,sha256=TqGLzEWsDyiQ0Gf6JpT_qBHUCgcvYXfVwpXxOay7Qz4,2407
|
34
|
-
msfabricpysdkcore/tests/test_spark.py,sha256=5BCAgHRiuXjIRnGrbvNNh9emq0VyZXlvIWgWAEir5ZQ,3437
|
35
|
-
msfabricpysdkcore/tests/test_sparkjobdefinition.py,sha256=whADi8l4opMaoB4b1W5EbuddyB5tC5OEqGRFKVUYMH4,2820
|
36
|
-
msfabricpysdkcore/tests/test_workspaces_capacities.py,sha256=52FqGZRVvHDegLgu71kGX_Tx4cRh9lO_wuK8BG_czkQ,6699
|
37
|
-
msfabricpysdkcore-0.0.13.dist-info/LICENSE,sha256=1NrGuF-zOmzbwzk3iI6lsP9koyDeKO1B0-8OD_tTvOQ,1156
|
38
|
-
msfabricpysdkcore-0.0.13.dist-info/METADATA,sha256=7AGKbri3_NsPkOfSgs-0naa8IpmRU_fSSBZhQUzj5Ws,20401
|
39
|
-
msfabricpysdkcore-0.0.13.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
40
|
-
msfabricpysdkcore-0.0.13.dist-info/top_level.txt,sha256=3iRonu6ptDGQN4Yl6G76XGM7xbFNsskiEHW-P2gMQGY,18
|
41
|
-
msfabricpysdkcore-0.0.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|