-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdk.config
55 lines (55 loc) · 2.48 KB
/
sdk.config
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
{
"template":"Examples/Template/Program.cs"
, "helloworld":"Examples/HelloWorld/Program.cs"
, "examples":[
{
"id":"authentication"
, "name": "Authentication"
, "description": "This example will login to Skylight using the SDK."
, "root": "Examples/Authentication"
, "file": "Program.cs"
, "docs": ["authentication.login"]
}
, {
"id":"template"
, "name": "Template"
, "description": "This is the Hello World example."
, "root": "Examples/Template"
, "file": "Program.cs"
, "docs": ["media.download", "mqtt.cardupdated.cardtags", "cards.tags", "assignments.delete"]
}
, {
"id":"createUserManagerGroup"
, "name": "Create User, Manager, and Group"
, "description": "This example will prompt for a name and create a user, manager, and group for your Skylight domain based on that name."
, "root": "Examples/CreateUserManagerGroup"
, "file": "Program.cs"
, "docs": ["users.create", "users.temporarypassword", "users.getall", "users.getbyid", "users.update", "users.updaterole", "users.logout", "users.delete", "groups.create", "groups.update", "groups.assign", "groups.unassign", "groups.delete", "groups.getall", "groups.getbyid"]
}
, {
"id":"media"
, "name": "Media"
, "description": "This example will upload a file."
, "root": "Examples/Media"
, "file": "Program.cs"
, "docs": ["media.upload"]
}
, {
"id":"assignments"
, "name": "Cards, Sequences, and Assignments"
, "description": "This example will create an assignment that has cards that will create/delete sequences within that assignment."
, "root": "Examples/Assignments"
, "file": "Program.cs"
, "docs": ["mqtt.cardupdated.cardid", "assignments.get", "assignments.bulkcreate", "assignments.delete", "cards.update", "cards.delete", "cards.get", "cards.create", "sequences.delete", "sequences.create"]
}
, {
"id":"mqtt"
, "name": "MQTT Events"
, "description": "This example will subscribe to various MQTT events."
, "root": "Examples/Mqtt"
, "file": "Program.cs"
, "docs": ["mqtt.cardupdated.componenttype"]
}
]
, "keep": ["Examples"]
}