Datasets - Get Direct Query Refresh Schedule
从“我的工作区”返回指定 DirectQuery 或 LiveConnection 数据集的刷新计划。
必需范围
Dataset.ReadWrite.All 或 Dataset.Read.All
GET https://api.powerbi.com/v1.0/myorg/datasets/{datasetId}/directQueryRefreshSchedule
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
dataset
|
path | True |
string |
数据集 ID |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
OK |
示例
Days and times schedule example |
Frequency schedule example |
Days and times schedule example
Sample Request
GET https://api.powerbi.com/v1.0/myorg/datasets/cfafbeb1-8037-4d0c-896e-a46fb27ff229/directQueryRefreshSchedule
Sample Response
{
"days": [
"Sunday",
"Friday",
"Saturday"
],
"times": [
"05:00",
"11:30",
"17:30",
"23:00"
],
"localTimeZoneId": "UTC"
}
Frequency schedule example
Sample Request
GET https://api.powerbi.com/v1.0/myorg/datasets/cfafbeb1-8037-4d0c-896e-a46fb27ff229/directQueryRefreshSchedule
Sample Response
{
"frequency": 15,
"days": [],
"times": [],
"localTimeZoneId": "UTC"
}
定义
名称 | 说明 |
---|---|
days |
执行刷新的日期 |
Direct |
DirectQuery 或 LiveConnection 的 Power BI 刷新计划,指定频率或天数和时间的组合。 |
days
执行刷新的日期
名称 | 类型 | 说明 |
---|---|---|
Friday |
string |
|
Monday |
string |
|
Saturday |
string |
|
Sunday |
string |
|
Thursday |
string |
|
Tuesday |
string |
|
Wednesday |
string |
DirectQueryRefreshSchedule
DirectQuery 或 LiveConnection 的 Power BI 刷新计划,指定频率或天数和时间的组合。
名称 | 类型 | 说明 |
---|---|---|
days |
days[] |
执行刷新的日期 |
frequency |
integer |
连续刷新之间的间隔(以分钟为单位)。 支持的值为 15、 30、 60、 120 和 180。 |
localTimeZoneId |
string |
要使用的时区的 ID。 有关详细信息,请参阅 时区信息 |
times |
string[] |
执行刷新的一天中的时间 |