semantic-link-labs 0.8.4__py3-none-any.whl → 0.8.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.
Potentially problematic release.
This version of semantic-link-labs might be problematic. Click here for more details.
- {semantic_link_labs-0.8.4.dist-info → semantic_link_labs-0.8.5.dist-info}/METADATA +8 -3
- {semantic_link_labs-0.8.4.dist-info → semantic_link_labs-0.8.5.dist-info}/RECORD +49 -47
- {semantic_link_labs-0.8.4.dist-info → semantic_link_labs-0.8.5.dist-info}/WHEEL +1 -1
- sempy_labs/__init__.py +29 -1
- sempy_labs/_data_pipelines.py +3 -3
- sempy_labs/_dataflows.py +116 -3
- sempy_labs/_dax.py +189 -3
- sempy_labs/_deployment_pipelines.py +3 -3
- sempy_labs/_environments.py +3 -3
- sempy_labs/_eventhouses.py +3 -3
- sempy_labs/_eventstreams.py +3 -3
- sempy_labs/_external_data_shares.py +1 -1
- sempy_labs/_generate_semantic_model.py +3 -3
- sempy_labs/_git.py +7 -7
- sempy_labs/_helper_functions.py +25 -1
- sempy_labs/_kql_databases.py +3 -3
- sempy_labs/_kql_querysets.py +3 -3
- sempy_labs/_mirrored_databases.py +428 -0
- sempy_labs/_mirrored_warehouses.py +1 -1
- sempy_labs/_ml_experiments.py +3 -3
- sempy_labs/_ml_models.py +4 -4
- sempy_labs/_model_bpa.py +209 -180
- sempy_labs/_model_bpa_bulk.py +41 -23
- sempy_labs/_model_dependencies.py +41 -87
- sempy_labs/_notebooks.py +2 -2
- sempy_labs/_query_scale_out.py +4 -4
- sempy_labs/_refresh_semantic_model.py +2 -2
- sempy_labs/_spark.py +6 -6
- sempy_labs/_vertipaq.py +31 -19
- sempy_labs/_warehouses.py +3 -3
- sempy_labs/_workspace_identity.py +2 -2
- sempy_labs/_workspaces.py +7 -7
- sempy_labs/admin/__init__.py +2 -0
- sempy_labs/admin/_basic_functions.py +54 -8
- sempy_labs/admin/_domains.py +1 -1
- sempy_labs/directlake/_update_directlake_partition_entity.py +1 -1
- sempy_labs/directlake/_warm_cache.py +10 -9
- sempy_labs/lakehouse/_get_lakehouse_tables.py +1 -1
- sempy_labs/lakehouse/_shortcuts.py +2 -2
- sempy_labs/migration/_create_pqt_file.py +5 -2
- sempy_labs/report/__init__.py +2 -0
- sempy_labs/report/_download_report.py +75 -0
- sempy_labs/report/_generate_report.py +3 -3
- sempy_labs/report/_report_functions.py +3 -3
- sempy_labs/report/_report_rebind.py +1 -1
- sempy_labs/report/_reportwrapper.py +4 -2
- sempy_labs/tom/_model.py +71 -35
- {semantic_link_labs-0.8.4.dist-info → semantic_link_labs-0.8.5.dist-info}/LICENSE +0 -0
- {semantic_link_labs-0.8.4.dist-info → semantic_link_labs-0.8.5.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
import sempy.fabric as fabric
|
|
2
|
+
import pandas as pd
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from sempy_labs._helper_functions import (
|
|
5
|
+
resolve_workspace_name_and_id,
|
|
6
|
+
pagination,
|
|
7
|
+
lro,
|
|
8
|
+
_decode_b64,
|
|
9
|
+
)
|
|
10
|
+
from sempy.fabric.exceptions import FabricHTTPException
|
|
11
|
+
import sempy_labs._icons as icons
|
|
12
|
+
import base64
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def list_mirrored_databases(workspace: Optional[str] = None) -> pd.DataFrame:
|
|
16
|
+
"""
|
|
17
|
+
Shows the mirrored databases within a workspace.
|
|
18
|
+
|
|
19
|
+
This is a wrapper function for the following API: `Items - List Mirrored Databases <https://learn.microsoft.com/rest/api/fabric/mirroredwarehouse/items/list-mirrored-databases>`_.
|
|
20
|
+
|
|
21
|
+
Parameters
|
|
22
|
+
----------
|
|
23
|
+
workspace : str, default=None
|
|
24
|
+
The Fabric workspace name.
|
|
25
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
26
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
27
|
+
|
|
28
|
+
Returns
|
|
29
|
+
-------
|
|
30
|
+
pandas.DataFrame
|
|
31
|
+
A pandas dataframe showing the mirrored databases within a workspace.
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
df = pd.DataFrame(
|
|
35
|
+
columns=[
|
|
36
|
+
"Mirrored Database Name",
|
|
37
|
+
"Mirrored Database Id",
|
|
38
|
+
"Description",
|
|
39
|
+
"OneLake Tables Path",
|
|
40
|
+
"SQL Endpoint Connection String",
|
|
41
|
+
"SQL Endpoint Id",
|
|
42
|
+
"Provisioning Status",
|
|
43
|
+
"Default Schema",
|
|
44
|
+
]
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
48
|
+
|
|
49
|
+
client = fabric.FabricRestClient()
|
|
50
|
+
response = client.get(f"/v1/workspaces/{workspace_id}/mirroredDatabases")
|
|
51
|
+
if response.status_code != 200:
|
|
52
|
+
raise FabricHTTPException(response)
|
|
53
|
+
responses = pagination(client, response)
|
|
54
|
+
|
|
55
|
+
for r in responses:
|
|
56
|
+
for v in r.get("value", []):
|
|
57
|
+
prop = v.get("properties", {})
|
|
58
|
+
sql = prop.get("sqlEndpointProperties", {})
|
|
59
|
+
new_data = {
|
|
60
|
+
"Mirrored Database Name": v.get("displayName"),
|
|
61
|
+
"Mirrored Database Id": v.get("id"),
|
|
62
|
+
"Description": v.get("description"),
|
|
63
|
+
"OneLake Tables Path": prop.get("oneLakeTablesPath"),
|
|
64
|
+
"SQL Endpoint Connection String": sql.get("connectionString"),
|
|
65
|
+
"SQL Endpoint Id": sql.get("id"),
|
|
66
|
+
"Provisioning Status": sql.get("provisioningStatus"),
|
|
67
|
+
"Default Schema": prop.get("defaultSchema"),
|
|
68
|
+
}
|
|
69
|
+
df = pd.concat([df, pd.DataFrame(new_data, index=[0])], ignore_index=True)
|
|
70
|
+
|
|
71
|
+
return df
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def create_mirrored_database(
|
|
75
|
+
name: str, description: Optional[str] = None, workspace: Optional[str] = None
|
|
76
|
+
):
|
|
77
|
+
"""
|
|
78
|
+
Creates a Fabric mirrored database.
|
|
79
|
+
|
|
80
|
+
This is a wrapper function for the following API: `Items - Create Mirrored Database <https://learn.microsoft.com/rest/api/fabric/mirroreddatabase/items/create-mirrored-database>`_.
|
|
81
|
+
|
|
82
|
+
Parameters
|
|
83
|
+
----------
|
|
84
|
+
name: str
|
|
85
|
+
Name of the mirrored database.
|
|
86
|
+
description : str, default=None
|
|
87
|
+
A description of the mirrored database.
|
|
88
|
+
workspace : str, default=None
|
|
89
|
+
The Fabric workspace name.
|
|
90
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
91
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
95
|
+
|
|
96
|
+
request_body = {"displayName": name}
|
|
97
|
+
|
|
98
|
+
if description:
|
|
99
|
+
request_body["description"] = description
|
|
100
|
+
|
|
101
|
+
client = fabric.FabricRestClient()
|
|
102
|
+
response = client.post(
|
|
103
|
+
f"/v1/workspaces/{workspace_id}/mirroredDatabases", json=request_body
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
if response.status_code != 201:
|
|
107
|
+
raise FabricHTTPException(response)
|
|
108
|
+
|
|
109
|
+
print(
|
|
110
|
+
f"{icons.green_dot} The '{name}' mirrored database has been created within the '{workspace}' workspace."
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
def delete_mirrored_database(mirrored_database: str, workspace: Optional[str] = None):
|
|
115
|
+
"""
|
|
116
|
+
Deletes a mirrored database.
|
|
117
|
+
|
|
118
|
+
This is a wrapper function for the following API: `Items - Delete Mirrored Database <https://learn.microsoft.com/rest/api/fabric/mirroreddatabase/items/delete-mirrored-database>`_.
|
|
119
|
+
|
|
120
|
+
Parameters
|
|
121
|
+
----------
|
|
122
|
+
mirrored_database: str
|
|
123
|
+
Name of the mirrored database.
|
|
124
|
+
workspace : str, default=None
|
|
125
|
+
The Fabric workspace name.
|
|
126
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
127
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
128
|
+
"""
|
|
129
|
+
|
|
130
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
131
|
+
|
|
132
|
+
item_id = fabric.resolve_item_id(
|
|
133
|
+
item_name=mirrored_database, type="MirroredDatabase", workspace=workspace
|
|
134
|
+
)
|
|
135
|
+
|
|
136
|
+
client = fabric.FabricRestClient()
|
|
137
|
+
response = client.delete(
|
|
138
|
+
f"/v1/workspaces/{workspace_id}/mirroredDatabases/{item_id}"
|
|
139
|
+
)
|
|
140
|
+
|
|
141
|
+
if response.status_code != 200:
|
|
142
|
+
raise FabricHTTPException(response)
|
|
143
|
+
|
|
144
|
+
print(
|
|
145
|
+
f"{icons.green_dot} The '{mirrored_database}' mirrored database within the '{workspace}' workspace has been deleted."
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
def get_mirroring_status(
|
|
150
|
+
mirrored_database: str, workspace: Optional[str] = None
|
|
151
|
+
) -> str:
|
|
152
|
+
"""
|
|
153
|
+
Get the status of the mirrored database.
|
|
154
|
+
|
|
155
|
+
This is a wrapper function for the following API: `Mirroring - Get Mirroring Status <https://learn.microsoft.com/rest/api/fabric/mirroreddatabase/mirroring/get-mirroring-status>`_.
|
|
156
|
+
|
|
157
|
+
Parameters
|
|
158
|
+
----------
|
|
159
|
+
mirrored_database: str
|
|
160
|
+
Name of the mirrored database.
|
|
161
|
+
workspace : str, default=None
|
|
162
|
+
The Fabric workspace name.
|
|
163
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
164
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
165
|
+
|
|
166
|
+
Returns
|
|
167
|
+
-------
|
|
168
|
+
str
|
|
169
|
+
The status of a mirrored database.
|
|
170
|
+
"""
|
|
171
|
+
|
|
172
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
173
|
+
|
|
174
|
+
item_id = fabric.resolve_item_id(
|
|
175
|
+
item_name=mirrored_database, type="MirroredDatabase", workspace=workspace
|
|
176
|
+
)
|
|
177
|
+
|
|
178
|
+
client = fabric.FabricRestClient()
|
|
179
|
+
response = client.post(
|
|
180
|
+
f"/v1/workspaces/{workspace_id}/mirroredDatabases/{item_id}/getMirroringStatus"
|
|
181
|
+
)
|
|
182
|
+
|
|
183
|
+
if response.status_code != 200:
|
|
184
|
+
raise FabricHTTPException(response)
|
|
185
|
+
|
|
186
|
+
return response.json().get("status", {})
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
def get_tables_mirroring_status(
|
|
190
|
+
mirrored_database: str, workspace: Optional[str] = None
|
|
191
|
+
) -> pd.DataFrame:
|
|
192
|
+
"""
|
|
193
|
+
Gets the mirroring status of the tables.
|
|
194
|
+
|
|
195
|
+
This is a wrapper function for the following API: `Mirroring - Get Tables Mirroring Status <https://learn.microsoft.com/rest/api/fabric/mirroreddatabase/mirroring/get-tables-mirroring-status>`_.
|
|
196
|
+
|
|
197
|
+
Parameters
|
|
198
|
+
----------
|
|
199
|
+
mirrored_database: str
|
|
200
|
+
Name of the mirrored database.
|
|
201
|
+
workspace : str, default=None
|
|
202
|
+
The Fabric workspace name.
|
|
203
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
204
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
205
|
+
|
|
206
|
+
Returns
|
|
207
|
+
-------
|
|
208
|
+
pandas.DataFrame
|
|
209
|
+
A pandas dataframe showing the mirroring status of the tables.
|
|
210
|
+
"""
|
|
211
|
+
|
|
212
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
213
|
+
|
|
214
|
+
item_id = fabric.resolve_item_id(
|
|
215
|
+
item_name=mirrored_database, type="MirroredDatabase", workspace=workspace
|
|
216
|
+
)
|
|
217
|
+
|
|
218
|
+
client = fabric.FabricRestClient()
|
|
219
|
+
response = client.post(
|
|
220
|
+
f"/v1/workspaces/{workspace_id}/mirroredDatabases/{item_id}/getTablesMirroringStatus"
|
|
221
|
+
)
|
|
222
|
+
|
|
223
|
+
if response.status_code != 200:
|
|
224
|
+
raise FabricHTTPException(response)
|
|
225
|
+
|
|
226
|
+
responses = pagination(client, response)
|
|
227
|
+
|
|
228
|
+
df = pd.DataFrame(
|
|
229
|
+
columns=[
|
|
230
|
+
"Source Schema Name",
|
|
231
|
+
"Source Table Name",
|
|
232
|
+
"Status",
|
|
233
|
+
"Processed Bytes",
|
|
234
|
+
"Processed Rows",
|
|
235
|
+
"Last Sync Date",
|
|
236
|
+
]
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
for r in responses:
|
|
240
|
+
for v in r.get("data", []):
|
|
241
|
+
m = v.get("metrics", {})
|
|
242
|
+
new_data = {
|
|
243
|
+
"Source Schema Name": v.get("sourceSchemaName"),
|
|
244
|
+
"Source Table Name": v.get("sourceTableName"),
|
|
245
|
+
"Status": v.get("status"),
|
|
246
|
+
"Processed Bytes": m.get("processedBytes"),
|
|
247
|
+
"Processed Rows": m.get("processedRows"),
|
|
248
|
+
"Last Sync Date": m.get("lastSyncDateTime"),
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
df = pd.concat([df, pd.DataFrame(new_data, index=[0])], ignore_index=True)
|
|
252
|
+
|
|
253
|
+
int_cols = ["Processed Bytes", "Processed Rows"]
|
|
254
|
+
df[int_cols] = df[int_cols].astype(int)
|
|
255
|
+
df["Last Sync Date"] = pd.to_datetime(df["Last Sync Date"])
|
|
256
|
+
|
|
257
|
+
return df
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
def start_mirroring(mirrored_database: str, workspace: Optional[str] = None):
|
|
261
|
+
"""
|
|
262
|
+
Starts the mirroring for a database.
|
|
263
|
+
|
|
264
|
+
This is a wrapper function for the following API: `Mirroring - Start Mirroring <https://learn.microsoft.com/rest/api/fabric/mirroreddatabase/mirroring/start-mirroring>`_.
|
|
265
|
+
|
|
266
|
+
Parameters
|
|
267
|
+
----------
|
|
268
|
+
mirrored_database: str
|
|
269
|
+
Name of the mirrored database.
|
|
270
|
+
workspace : str, default=None
|
|
271
|
+
The Fabric workspace name.
|
|
272
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
273
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
274
|
+
"""
|
|
275
|
+
|
|
276
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
277
|
+
|
|
278
|
+
item_id = fabric.resolve_item_id(
|
|
279
|
+
item_name=mirrored_database, type="MirroredDatabase", workspace=workspace
|
|
280
|
+
)
|
|
281
|
+
|
|
282
|
+
client = fabric.FabricRestClient()
|
|
283
|
+
response = client.post(
|
|
284
|
+
f"/v1/workspaces/{workspace_id}/mirroredDatabases/{item_id}/startMirroring"
|
|
285
|
+
)
|
|
286
|
+
|
|
287
|
+
if response.status_code != 200:
|
|
288
|
+
raise FabricHTTPException(response)
|
|
289
|
+
|
|
290
|
+
print(
|
|
291
|
+
f"{icons.green_dot} Mirroring has started for the '{mirrored_database}' database within the '{workspace}' workspace."
|
|
292
|
+
)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
def stop_mirroring(mirrored_database: str, workspace: Optional[str] = None):
|
|
296
|
+
"""
|
|
297
|
+
Stops the mirroring for a database.
|
|
298
|
+
|
|
299
|
+
This is a wrapper function for the following API: `Mirroring - Stop Mirroring <https://learn.microsoft.com/rest/api/fabric/mirroreddatabase/mirroring/stop-mirroring>`_.
|
|
300
|
+
|
|
301
|
+
Parameters
|
|
302
|
+
----------
|
|
303
|
+
mirrored_database: str
|
|
304
|
+
Name of the mirrored database.
|
|
305
|
+
workspace : str, default=None
|
|
306
|
+
The Fabric workspace name.
|
|
307
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
308
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
309
|
+
"""
|
|
310
|
+
|
|
311
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
312
|
+
|
|
313
|
+
item_id = fabric.resolve_item_id(
|
|
314
|
+
item_name=mirrored_database, type="MirroredDatabase", workspace=workspace
|
|
315
|
+
)
|
|
316
|
+
|
|
317
|
+
client = fabric.FabricRestClient()
|
|
318
|
+
response = client.post(
|
|
319
|
+
f"/v1/workspaces/{workspace_id}/mirroredDatabases/{item_id}/stopMirroring"
|
|
320
|
+
)
|
|
321
|
+
|
|
322
|
+
if response.status_code != 200:
|
|
323
|
+
raise FabricHTTPException(response)
|
|
324
|
+
|
|
325
|
+
print(
|
|
326
|
+
f"{icons.green_dot} Mirroring has stopped for the '{mirrored_database}' database within the '{workspace}' workspace."
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
def get_mirrored_database_definition(
|
|
331
|
+
mirrored_database: str, workspace: Optional[str] = None, decode: bool = True
|
|
332
|
+
) -> str:
|
|
333
|
+
"""
|
|
334
|
+
Obtains the mirrored database definition.
|
|
335
|
+
|
|
336
|
+
This is a wrapper function for the following API: `Items - Get Mirrored Database Definition <https://learn.microsoft.com/rest/api/fabric/mirroreddatabase/items/get-mirrored-database-definition>`_.
|
|
337
|
+
|
|
338
|
+
Parameters
|
|
339
|
+
----------
|
|
340
|
+
mirrored_database : str
|
|
341
|
+
The name of the mirrored database.
|
|
342
|
+
workspace : str, default=None
|
|
343
|
+
The name of the workspace.
|
|
344
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
345
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
346
|
+
decode : bool, default=True
|
|
347
|
+
If True, decodes the mirrored database definition file into .json format.
|
|
348
|
+
If False, obtains the mirrored database definition file in base64 format.
|
|
349
|
+
|
|
350
|
+
Returns
|
|
351
|
+
-------
|
|
352
|
+
str
|
|
353
|
+
The mirrored database definition.
|
|
354
|
+
"""
|
|
355
|
+
|
|
356
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
357
|
+
item_id = fabric.resolve_item_id(
|
|
358
|
+
item_name=mirrored_database, type="MirroredDatabase", workspace=workspace
|
|
359
|
+
)
|
|
360
|
+
client = fabric.FabricRestClient()
|
|
361
|
+
response = client.post(
|
|
362
|
+
f"v1/workspaces/{workspace_id}/mirroredDatabases/{item_id}/getDefinition",
|
|
363
|
+
)
|
|
364
|
+
|
|
365
|
+
result = lro(client, response).json()
|
|
366
|
+
df_items = pd.json_normalize(result["definition"]["parts"])
|
|
367
|
+
df_items_filt = df_items[df_items["path"] == "mirroredDatabase.json"]
|
|
368
|
+
payload = df_items_filt["payload"].iloc[0]
|
|
369
|
+
|
|
370
|
+
if decode:
|
|
371
|
+
result = _decode_b64(payload)
|
|
372
|
+
else:
|
|
373
|
+
result = payload
|
|
374
|
+
|
|
375
|
+
return result
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
def update_mirrored_database_definition(
|
|
379
|
+
mirrored_database: str,
|
|
380
|
+
mirrored_database_content: dict,
|
|
381
|
+
workspace: Optional[str] = None,
|
|
382
|
+
):
|
|
383
|
+
"""
|
|
384
|
+
Updates an existing notebook with a new definition.
|
|
385
|
+
|
|
386
|
+
Parameters
|
|
387
|
+
----------
|
|
388
|
+
mirrored_database : str
|
|
389
|
+
The name of the mirrored database to be created.
|
|
390
|
+
mirrored_database_content : dict
|
|
391
|
+
The mirrored database definition (not in Base64 format).
|
|
392
|
+
workspace : str, default=None
|
|
393
|
+
The name of the workspace.
|
|
394
|
+
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
395
|
+
or if no lakehouse attached, resolves to the workspace of the notebook.
|
|
396
|
+
"""
|
|
397
|
+
|
|
398
|
+
(workspace, workspace_id) = resolve_workspace_name_and_id(workspace)
|
|
399
|
+
client = fabric.FabricRestClient()
|
|
400
|
+
payload = base64.b64encode(mirrored_database_content)
|
|
401
|
+
item_id = fabric.resolve_item_id(
|
|
402
|
+
item_name=mirrored_database, type="MirroredDatabase", workspace=workspace
|
|
403
|
+
)
|
|
404
|
+
|
|
405
|
+
request_body = {
|
|
406
|
+
"displayName": mirrored_database,
|
|
407
|
+
"definition": {
|
|
408
|
+
"format": "ipynb",
|
|
409
|
+
"parts": [
|
|
410
|
+
{
|
|
411
|
+
"path": "mirroredDatabase.json",
|
|
412
|
+
"payload": payload,
|
|
413
|
+
"payloadType": "InlineBase64",
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
},
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
response = client.post(
|
|
420
|
+
f"v1/workspaces/{workspace_id}/mirroredDatabases/{item_id}/updateDefinition",
|
|
421
|
+
json=request_body,
|
|
422
|
+
)
|
|
423
|
+
|
|
424
|
+
lro(client, response, return_status_code=True)
|
|
425
|
+
|
|
426
|
+
print(
|
|
427
|
+
f"{icons.green_dot} The '{mirrored_database}' mirrored database was updated within the '{workspace}' workspace."
|
|
428
|
+
)
|
|
@@ -12,7 +12,7 @@ def list_mirrored_warehouses(workspace: Optional[str] = None) -> pd.DataFrame:
|
|
|
12
12
|
"""
|
|
13
13
|
Shows the mirrored warehouses within a workspace.
|
|
14
14
|
|
|
15
|
-
This is a wrapper function for the following API: `Items - List Mirrored Warehouses <https://learn.microsoft.com/rest/api/fabric/mirroredwarehouse/items/list-mirrored-warehouses
|
|
15
|
+
This is a wrapper function for the following API: `Items - List Mirrored Warehouses <https://learn.microsoft.com/rest/api/fabric/mirroredwarehouse/items/list-mirrored-warehouses>`_.
|
|
16
16
|
|
|
17
17
|
Parameters
|
|
18
18
|
----------
|
sempy_labs/_ml_experiments.py
CHANGED
|
@@ -14,7 +14,7 @@ def list_ml_experiments(workspace: Optional[str] = None) -> pd.DataFrame:
|
|
|
14
14
|
"""
|
|
15
15
|
Shows the ML experiments within a workspace.
|
|
16
16
|
|
|
17
|
-
This is a wrapper function for the following API: `Items - List ML Experiments <https://learn.microsoft.com/rest/api/fabric/mlexperiment/items/list-ml-experiments
|
|
17
|
+
This is a wrapper function for the following API: `Items - List ML Experiments <https://learn.microsoft.com/rest/api/fabric/mlexperiment/items/list-ml-experiments>`_.
|
|
18
18
|
|
|
19
19
|
Parameters
|
|
20
20
|
----------
|
|
@@ -62,7 +62,7 @@ def create_ml_experiment(
|
|
|
62
62
|
"""
|
|
63
63
|
Creates a Fabric ML experiment.
|
|
64
64
|
|
|
65
|
-
This is a wrapper function for the following API: `Items - Create ML Experiment <https://learn.microsoft.com/rest/api/fabric/mlexperiment/items/create-ml-experiment
|
|
65
|
+
This is a wrapper function for the following API: `Items - Create ML Experiment <https://learn.microsoft.com/rest/api/fabric/mlexperiment/items/create-ml-experiment>`_.
|
|
66
66
|
|
|
67
67
|
Parameters
|
|
68
68
|
----------
|
|
@@ -99,7 +99,7 @@ def delete_ml_experiment(name: str, workspace: Optional[str] = None):
|
|
|
99
99
|
"""
|
|
100
100
|
Deletes a Fabric ML experiment.
|
|
101
101
|
|
|
102
|
-
This is a wrapper function for the following API: `Items - Delete ML Experiment <https://learn.microsoft.com/rest/api/fabric/mlexperiment/items/delete-ml-experiment
|
|
102
|
+
This is a wrapper function for the following API: `Items - Delete ML Experiment <https://learn.microsoft.com/rest/api/fabric/mlexperiment/items/delete-ml-experiment>`_.
|
|
103
103
|
|
|
104
104
|
Parameters
|
|
105
105
|
----------
|
sempy_labs/_ml_models.py
CHANGED
|
@@ -14,7 +14,7 @@ def list_ml_models(workspace: Optional[str] = None) -> pd.DataFrame:
|
|
|
14
14
|
"""
|
|
15
15
|
Shows the ML models within a workspace.
|
|
16
16
|
|
|
17
|
-
This is a wrapper function for the following API: `Items - List ML Models <https://learn.microsoft.com/rest/api/fabric/mlmodel/items/list-ml-models
|
|
17
|
+
This is a wrapper function for the following API: `Items - List ML Models <https://learn.microsoft.com/rest/api/fabric/mlmodel/items/list-ml-models>`_.
|
|
18
18
|
|
|
19
19
|
Parameters
|
|
20
20
|
----------
|
|
@@ -62,14 +62,14 @@ def create_ml_model(
|
|
|
62
62
|
"""
|
|
63
63
|
Creates a Fabric ML model.
|
|
64
64
|
|
|
65
|
-
This is a wrapper function for the following API: `Items - Create ML Model <https://learn.microsoft.com/rest/api/fabric/mlmodel/items/create-ml-model
|
|
65
|
+
This is a wrapper function for the following API: `Items - Create ML Model <https://learn.microsoft.com/rest/api/fabric/mlmodel/items/create-ml-model>`_.
|
|
66
66
|
|
|
67
67
|
Parameters
|
|
68
68
|
----------
|
|
69
69
|
name: str
|
|
70
70
|
Name of the ML model.
|
|
71
71
|
description : str, default=None
|
|
72
|
-
A description of the
|
|
72
|
+
A description of the ML model.
|
|
73
73
|
workspace : str, default=None
|
|
74
74
|
The Fabric workspace name.
|
|
75
75
|
Defaults to None which resolves to the workspace of the attached lakehouse
|
|
@@ -97,7 +97,7 @@ def delete_ml_model(name: str, workspace: Optional[str] = None):
|
|
|
97
97
|
"""
|
|
98
98
|
Deletes a Fabric ML model.
|
|
99
99
|
|
|
100
|
-
This is a wrapper function for the following API: `Items - Delete ML Model <https://learn.microsoft.com/rest/api/fabric/mlmodel/items/delete-ml-model
|
|
100
|
+
This is a wrapper function for the following API: `Items - Delete ML Model <https://learn.microsoft.com/rest/api/fabric/mlmodel/items/delete-ml-model>`_.
|
|
101
101
|
|
|
102
102
|
Parameters
|
|
103
103
|
----------
|