Datasets - Update Refresh Schedule In Group
更新指定工作區中指定資料集的重新整理排程。
停用重新整理排程的要求應該不包含其他變更。
至少必須指定一天。 如果未指定任何時間,Power BI 會每天使用預設單一時間。
權限
- 使用者必須是資料集擁有者。
- 此 API 呼叫可由服務主體設定檔呼叫。 如需詳細資訊,請參閱:Power BI Embedded中的服務主體設定檔。
必要範圍
Dataset.ReadWrite.All
限制
每天時間位置數目的限制取決於是否使用 進階 或共用容量。
PATCH https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/refreshSchedule
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
dataset
|
path | True |
string |
資料集識別碼 |
group
|
path | True |
string uuid |
工作區識別碼 |
要求本文
名稱 | 必要 | 類型 | Description |
---|---|---|---|
value | True |
物件,包含重新整理排程的詳細資料 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
確定 |
範例
Change the days and times of a refresh schedule example |
Change the notification option of a refresh schedule example |
Disable a scheduled refresh example |
Update the times of a refresh schedule example |
Change the days and times of a refresh schedule example
Sample Request
PATCH https://api.powerbi.com/v1.0/myorg/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/datasets/cfafbeb1-8037-4d0c-896e-a46fb27ff229/refreshSchedule
{
"value": {
"days": [
"Sunday",
"Tuesday",
"Friday",
"Saturday"
],
"times": [
"07:00",
"11:30",
"16:00",
"23:30"
],
"localTimeZoneId": "UTC"
}
}
Sample Response
Change the notification option of a refresh schedule example
Sample Request
PATCH https://api.powerbi.com/v1.0/myorg/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/datasets/cfafbeb1-8037-4d0c-896e-a46fb27ff229/refreshSchedule
{
"value": {
"notifyOption": "NoNotification"
}
}
Sample Response
Disable a scheduled refresh example
Sample Request
PATCH https://api.powerbi.com/v1.0/myorg/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/datasets/cfafbeb1-8037-4d0c-896e-a46fb27ff229/refreshSchedule
{
"value": {
"enabled": false
}
}
Sample Response
Update the times of a refresh schedule example
Sample Request
PATCH https://api.powerbi.com/v1.0/myorg/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/datasets/cfafbeb1-8037-4d0c-896e-a46fb27ff229/refreshSchedule
{
"value": {
"times": [
"08:00",
"16:00"
]
}
}
Sample Response
定義
名稱 | Description |
---|---|
days |
要執行重新整理的天數 |
Refresh |
匯入模型的Power BI 重新整理排程 |
Refresh |
Power BI 重新整理排程要求 |
Schedule |
排程重新整理終止的通知選項。 服務主體僅支援 |
days
要執行重新整理的天數
名稱 | 類型 | Description |
---|---|---|
Friday |
string |
|
Monday |
string |
|
Saturday |
string |
|
Sunday |
string |
|
Thursday |
string |
|
Tuesday |
string |
|
Wednesday |
string |
RefreshSchedule
匯入模型的Power BI 重新整理排程
名稱 | 類型 | Description |
---|---|---|
NotifyOption |
排程重新整理終止的通知選項。 服務主體僅支援 |
|
days |
days[] |
要執行重新整理的天數 |
enabled |
boolean |
是否啟用重新整理 |
localTimeZoneId |
string |
要使用的時區識別碼。 如需詳細資訊,請參閱 時區資訊。 |
times |
string[] |
執行重新整理的一天時間 |
RefreshScheduleRequest
Power BI 重新整理排程要求
名稱 | 類型 | Description |
---|---|---|
value |
物件,包含重新整理排程的詳細資料 |
ScheduleNotifyOption
排程重新整理終止的通知選項。 服務主體僅支援 NoNotification
值。
名稱 | 類型 | Description |
---|---|---|
MailOnFailure |
string |
重新整理失敗時會傳送郵件通知 |
NoNotification |
string |
不會傳送通知 |