-
Notifications
You must be signed in to change notification settings - Fork 13
/
get-Imports.pq
63 lines (63 loc) · 2.22 KB
/
get-Imports.pq
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
let
output =
(generatedToken as text) =>
let
apiCall =
Json.Document(
Web.Contents(
"https://api.powerbi.com/v1.0/myorg",
[
RelativePath = "admin/imports",
Headers = [
#"Content-Type" = "application/json",
Authorization = generatedToken
]
]
)
)
in
#table(
type table [
id = text,
importState = text,
createdDateTime = datetime,
updatedDateTime = datetime,
name = text,
connectionType = text,
source = text,
datasets = list,
reports = list,
dataflows = list
],
List.Transform(
apiCall[value],
each
{
_[id]?,
_[importState]?,
_[createdDateTime]?,
_[updatedDateTime]?,
_[name]?,
_[connectionType]?,
_[source]?,
_[datasets]?,
_[reports]?,
_[dataflows]?
}
)
),
documentation = [
Documentation.Name = " get-Imports.pq ",
Documentation.Description = " Get all imports to tentant ",
Documentation.Source = " https://www.jaknapowerbi.cz ",
Documentation.Version = " 1.0 ",
Documentation.Author = " Štěpán Rešl "
]
in
Value.ReplaceType(
output,
Value.ReplaceMetadata(
Value.Type(output),
documentation
)
)