You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The item type. If specifying the item name as the item, the item type is required.
28
+
The item `type <https://learn.microsoft.com/rest/api/fabric/core/items/list-items?tabs=HTTP#itemtype>`_. If specifying the item name as the item, the item type is required.
27
29
workspace : str | uuid.UUID, default=None
28
30
The Fabric workspace name or ID used by the lakehouse.
29
31
Defaults to None which resolves to the workspace of the attached lakehouse
This is a wrapper function for the following API: `Job Scheduler - List Item Schedules <https://learn.microsoft.com/rest/api/fabric/core/job-scheduler/list-item-schedules>`_.
109
+
110
+
Parameters
111
+
----------
112
+
item : str | uuid.UUID
113
+
The item name or ID
114
+
type : str, default=None
115
+
The item `type <https://learn.microsoft.com/rest/api/fabric/core/items/list-items?tabs=HTTP#itemtype>`_. If specifying the item name as the item, the item type is required.
116
+
job_type : str, default="DefaultJob"
117
+
The job type.
118
+
workspace : str | uuid.UUID, default=None
119
+
The Fabric workspace name or ID used by the lakehouse.
120
+
Defaults to None which resolves to the workspace of the attached lakehouse
121
+
or if no lakehouse attached, resolves to the workspace of the notebook.
122
+
123
+
Returns
124
+
-------
125
+
pandas.DataFrame
126
+
Shows a list of scheduling settings for one specific item.
df["Created Date Time"] =pd.to_datetime(df["Created Date Time"])
181
+
df["Start Date Time"] =pd.to_datetime(df["Start Date Time"])
182
+
183
+
returndf
184
+
185
+
186
+
defrun_on_demand_item_job(
187
+
item: str|UUID,
188
+
type: Optional[str] =None,
189
+
job_type: str="DefaultJob",
190
+
workspace: Optional[str|UUID] =None,
191
+
):
192
+
"""
193
+
Run on-demand item job instance.
194
+
195
+
This is a wrapper function for the following API: `Job Scheduler - Run On Demand Item Job <https://learn.microsoft.com/rest/api/fabric/core/job-scheduler/run-on-demand-item-job>`_.
196
+
197
+
Parameters
198
+
----------
199
+
item : str | uuid.UUID
200
+
The item name or ID
201
+
type : str, default=None
202
+
The item `type <https://learn.microsoft.com/rest/api/fabric/core/items/list-items?tabs=HTTP#itemtype>`_. If specifying the item name as the item, the item type is required.
203
+
job_type : str, default="DefaultJob"
204
+
The job type.
205
+
workspace : str | uuid.UUID, default=None
206
+
The Fabric workspace name or ID used by the lakehouse.
207
+
Defaults to None which resolves to the workspace of the attached lakehouse
208
+
or if no lakehouse attached, resolves to the workspace of the notebook.
0 commit comments