-
Notifications
You must be signed in to change notification settings - Fork 1
/
GetStreams.pqm
94 lines (94 loc) · 3.6 KB
/
GetStreams.pqm
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
let
GetStreams = (
token as text, resource as text, apiVersion as text, tenantId as text, namespaceId as text, query as text
) as table =>
let
// construct query for community streams
dataQuery = "/api/"
& apiVersion
& "/Tenants/"
& tenantId
& "/Namespaces/"
& namespaceId
& "/Streams?query="
& query,
getJsonQuery = Json.Document(
Web.Contents(resource, [
RelativePath = dataQuery,
Headers = [
Authorization = token
]
])
),
tableOfData = Table.FromList(getJsonQuery, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
expandedTableOfData = Table.ExpandRecordColumn(
tableOfData,
"Column1",
{"Id", "Name", "Description", "TypeId", "CreatedDate", "ModifiedDate"},
{
"Id",
"Name",
"Description",
"TypeId",
"CreatedDate",
"ModifiedDate"
}
)
in
expandedTableOfData,
GetStreamsType = type function (
token as (
type text meta [
Documentation.FieldCaption = "Token",
Documentation.FieldDescription = "OAuth bearer token. Generate using GetToken.",
Documentation.SampleValues = {"Generate using GetToken()"}
]
),
resource as (
type text meta [
Documentation.FieldCaption = "Resource",
Documentation.FieldDescription = "Region Endpoint.",
Documentation.SampleValues = {"https://uswe.datahub.connect.aveva.com"}
]
),
apiVersion as (
type text meta [
Documentation.FieldCaption = "API Version",
Documentation.FieldDescription = "API Version.",
Documentation.SampleValues = {"v1"}
]
),
tenantId as (
type text meta [
Documentation.FieldCaption = "Tenant Id",
Documentation.FieldDescription = "Tenant Identifier.",
Documentation.SampleValues = {"Enter Tenant Id"}
]
),
namespaceId as (
type text meta [
Documentation.FieldCaption = "Namespace Id",
Documentation.FieldDescription = "Namespace Identifier.",
Documentation.SampleValues = {"Enter Namespace Id"}
]
),
query as (
type text meta [
Documentation.FieldCaption = "Query",
Documentation.FieldDescription = "Parameter representing a Stream search.",
Documentation.SampleValues = {"*"}
]
)
) as binary meta [
Documentation.Name = "Get Streams",
Documentation.LongDescription = "Retrieves Streams based on query.
<br>
<br>     <b>Token</b>: OAuth bearer token. Generate using GetToken().
<br>     <b>Resource</b>: Region Endpoint.
<br>     <b>API Version</b>: API Version.
<br>     <b>Tenant Id</b>: Tenant Identifier.
<br>     <b>Namespace Id</b>: Namespace Identifier.
<br>     <b>Query</b>: Parameter representing a Stream search."
]
in
Value.ReplaceType(GetStreams, GetStreamsType)