-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pbixproj.json
78 lines (78 loc) · 2.01 KB
/
.pbixproj.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"version": "0.12",
"created": "2022-05-25T15:24:03.2613259+01:00",
"deployments": {
"Contoso": {
"mode": "Dataset",
"source": {
"type": "Folder",
"path": "./Contoso Sales"
},
"authentication": {
"type": "ServicePrincipal",
"tenantId": "pbitools.org",
"clientId": "708b6947-c640-4a74-9100-e4b3312b7182",
"clientSecret": "%PBI_CLIENT_SECRET%"
},
"options": {
"refresh": {
"enabled": true,
"skipNewDataset": true,
"method": "XMLA",
"type": "Full",
"tracing": {
"enabled": true,
"logEvents": {
"filter": [
"*|TabularRefresh|Partition",
"*|ReadData|Partition"
]
},
"summary": {
"events": [
"TabularRefresh",
"Process",
"ReadData",
"ExecuteSql"
],
"objectTypes": [
"Partition"
],
"outPath": "refresh_stats.csv",
"console": true
}
}
},
"dataset": {
"replaceParameters": true,
"deployEmbeddedReport": true
}
},
"parameters": {
"[Version]": "1.1.0",
"[Environment]": "{{ENVIRONMENT}}",
"[PBITOOLS_VERSION]": "{{PBITOOLS_VERSION}}",
"[GH-Branch]": "%GITHUB_REF_NAME%",
"[GH-RunId]": "%GITHUB_RUN_ID%",
"[GH-SHA]": "%GITHUB_SHA%",
"[FilterDate]": null
},
"environments": {
"Development": {
"workspace": "Datasets [DEV]",
"displayName": "{{PBIXPROJ_FOLDER}} [DEV]",
"refresh": {}
},
"UAT": {
"workspace": "Datasets [PROD]",
"displayName": "{{PBIXPROJ_FOLDER}} [UAT]",
"refresh": {}
},
"Production": {
"workspace": "Datasets [PROD]",
"refresh": {}
}
}
}
}
}