-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathservices.yaml
578 lines (560 loc) · 14.9 KB
/
services.yaml
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
scan_for_calendars:
name: Scan for new calendars
description: "Scan for newly available calendars"
scan_for_todo_lists:
name: Scan for new todo lists
description: "Scan for newly available todo lists"
respond_calendar_event:
name: Respond to an event
description: "Respond to calendar event/invite"
target:
device:
integration: o365
entity:
integration: o365
domain: calendar
fields:
event_id:
name: Event ID
description: ID for event, can be found as an attribute on your calendar entity's events
example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
required: true
selector:
text:
response:
name: Response
description: "The response to the invite [Accept, Tentative, Decline]"
example: Decline
required: true
selector:
text:
message:
name: Message
description: "The response message to the invite (Optional)"
example: "I cannot attend this meeting"
selector:
text:
send_response:
name: Send Response
description: "Send the response to the organizer (Optional)"
example: True
selector:
boolean:
create_calendar_event:
name: Create a new event
description: Create new calendar event
target:
device:
integration: o365
entity:
integration: o365
domain: calendar
fields:
subject:
name: Subject
description: The subject of the created event
example: Clean up the garage
required: true
selector:
text:
start:
name: Start
description: The start time of the event
example: "2025-03-22 20:00:00"
required: true
selector:
datetime:
end:
name: End
description: The end time of the event
example: "2025-03-22 20:30:00"
required: true
selector:
datetime:
body:
name: Body
description: The body text for the event (optional)
example: Remember to also clean out the gutters
selector:
text:
location:
name: Location
description: The location for the event (optional)
example: "1600 Pennsylvania Ave Nw, Washington, DC 20500"
selector:
text:
categories:
name: Categories
description: list of categories for the event (optional)
selector:
text:
sensitivity:
name: Sensitivity
description: "The sensitivity for the event (optional) [Normal, Personal, Private, Confidential]"
example: normal
selector:
select:
mode: dropdown
options:
- label: "Normal"
value: "normal"
- label: "Personal"
value: "personal"
- label: "Private"
value: "private"
- label: "Confidential"
value: "confidential"
show_as:
name: Show As
description: "Show event as (optional) [Free, Tentative, Busy, Oof, WorkingElsewhere, Unknown]"
example: busy
selector:
select:
mode: dropdown
options:
- label: "Free"
value: "free"
- label: "Tentative"
value: "tentative"
- label: "Busy"
value: "busy"
- label: "Out of Office"
value: "oof"
- label: "Working Elsewhere"
value: "workingElsewhere"
- label: "Unknown"
value: "unknown"
is_all_day:
name: All Day
description: Set whether event is all day (optional)
example: False
selector:
boolean:
attendees:
name: Attendees
description: "list of attendees formatted as email: example@example.com type: Required, Optional, or Resource (optional)"
selector:
object:
modify_calendar_event:
name: Modify an event
description: Modify existing calendar event, all properties except event_id are optional.
target:
device:
integration: o365
entity:
integration: o365
domain: calendar
fields:
event_id:
name: Event ID
description: ID for the event, can be found as an attribute on you calendar entity's events
example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
required: true
selector:
text:
subject:
name: Subject
description: The subject of the created event
example: Clean up the garage
selector:
text:
start:
name: Start
description: The start time of the event
example: "2025-03-22 20:00:00"
selector:
datetime:
end:
name: End
description: The end time of the event
example: "2025-03-22 20:30:00"
selector:
datetime:
body:
name: Body
description: The body text for the event
example: Remember to also clean out the gutters
selector:
text:
location:
name: Location
description: The location for the event
example: "1600 Pennsylvania Ave Nw, Washington, DC 20500"
selector:
text:
categories:
name: Categories
description: list of categories for the event
selector:
text:
sensitivity:
name: Sensitivity
description: "The sensitivity for the event[Normal, Personal, Private, Confidential]"
example: normal
selector:
select:
mode: dropdown
options:
- label: "Normal"
value: "normal"
- label: "Personal"
value: "personal"
- label: "Private"
value: "private"
- label: "Confidential"
value: "confidential"
show_as:
name: Show As
description: "Show event as [Free, Tentative, Busy, Oof, WorkingElsewhere, Unknown]"
example: busy
selector:
select:
mode: dropdown
options:
- label: "Free"
value: "free"
- label: "Tentative"
value: "tentative"
- label: "Busy"
value: "busy"
- label: "Out of Office"
value: "oof"
- label: "Working Elsewhere"
value: "workingElsewhere"
- label: "Unknown"
value: "unknown"
is_all_day:
name: All Day
description: Set whether event is all day
example: False
selector:
boolean:
attendees:
name: Attendees
description: "list of attendees formatted as email: example@example.com type: Required, Optional, or Resource"
selector:
object:
remove_calendar_event:
name: Delete an event
description: Delete calendar event
target:
device:
integration: o365
entity:
integration: o365
domain: calendar
fields:
event_id:
name: Event ID
description: ID for the event, can be found as an attribute on you calendar entity's events
example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
required: true
selector:
text:
new_todo:
name: Create a ToDo
description: Create a new ToDo
target:
device:
integration: o365
entity:
integration: o365
domain: todo
fields:
subject:
name: Subject
description: The subject of the todo
example: Pick up the mail
required: true
selector:
text:
description:
name: Description
description: Description of the todo
example: Walk to the post box and collect the mail
selector:
text:
due:
name: Due date
description: When the todo is due by
example: '"2025-01-01"'
selector:
date:
reminder:
name: Reminder date & time
description: When a reminder is needed
example: "2025-01-01T12:00:00+0000"
selector:
datetime:
update_todo:
name: Update a ToDo
description: Update a ToDo
target:
device:
integration: o365
entity:
integration: o365
domain: todo
fields:
todo_id:
name: ToDo ID
description: ID for the todo, can be found as an attribute on your todo
example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
required: true
selector:
text:
subject:
name: Subject
description: The subject of the todo
example: Pick up the mail
selector:
text:
description:
name: Description
description: Description of the todo
example: Walk to the post box and collect the mail
selector:
text:
due:
name: Due date
description: When the todo is due by
example: '"2025-01-01"'
selector:
date:
reminder:
name: reminder date & time
description: When a reminder is needed
example: "2025-01-01T12:00:00+0000"
selector:
datetime:
delete_todo:
name: Delete a ToDo
description: Delete a ToDo
target:
device:
integration: o365
entity:
integration: o365
domain: todo
fields:
todo_id:
name: ToDo ID
description: ID for the todo, can be found as an attribute on your todo
example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
required: true
selector:
text:
complete_todo:
name: Complete a ToDo
description: Complete a ToDo
target:
device:
integration: o365
entity:
integration: o365
domain: todo
fields:
todo_id:
name: Todo ID
description: ID for the todo, can be found as an attribute on your todo
example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
required: true
selector:
text:
completed:
name: Completed
description: Set whether todo is completed or not
example: True
required: true
selector:
boolean:
auto_reply_enable:
name: Auto reply enable
description: Schedules auto reply
target:
device:
integration: o365
entity:
integration: o365
domain: sensor
fields:
external_reply:
name: External reply
description: The message to be send to external emails (or to all emails, if you don't have an organisation email)
example: I'm currently on holliday, please email Bob for answers
required: true
selector:
text:
internal_reply:
name: Internal Reply
description: The message to be send to internal emails
example: I'm currently on holliday
required: true
selector:
text:
start:
name: Start date & time
description: The start time of the schedule
example: "2025-01-01T12:00:00+0000"
selector:
text:
end:
name: End date & time
description: The end time of the schedule
example: "2025-01-02T12:30:00+0000"
selector:
text:
external_audience:
name: External Audience
description: "The set of audience external to the signed-in user's organization who will receive the ExternalReplyMessage. The possible values are: none, contactsOnly, all."
example: all
selector:
select:
mode: dropdown
options:
- label: "All"
value: "all"
- label: "Contacts Only"
value: "contactsOnly"
- label: "None"
value: "none"
auto_reply_disable:
name: Auto reply disable
description: Disables auto reply
target:
device:
integration: o365
entity:
integration: o365
domain: sensor
send_chat_message:
name: Send chat message
description: "Send message to a specified chat"
target:
device:
integration: o365
entity:
integration: o365
domain: sensor
fields:
chat_id:
name: Chat ID
description: ID for chat, can be found as an attribute on your chat entity
example: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
required: true
selector:
text:
message:
name: Message
description: "Message to send to the chat"
example: Hello team
required: true
selector:
text:
content_type:
name: Content Type
description: The type of content to send, html if you are sending a HTML message or text for plain text
example: text
required: false
selector:
select:
mode: dropdown
options:
- label: HTML
value: html
- label: Text
value: text
update_user_status:
name: Update user Teams status
description: "Update the user's Teams status"
target:
device:
integration: o365
entity:
integration: o365
domain: sensor
fields:
availability:
name: Availability
description: "The base presence information"
example: Busy
required: true
selector:
select:
mode: dropdown
options:
- label: "Available"
value: "Available"
- label: "Busy"
value: "Busy"
- label: "Away"
value: "Away"
- label: "Do Not Disturb"
value: "DoNotDisturb"
activity:
name: Activity
description: "The supplemental information to availability"
example: InACall
required: true
selector:
select:
mode: dropdown
options:
- label: "Available"
value: "Available"
- label: "In a Call"
value: "InACall"
- label: "In a Conference Call"
value: "InAConferenceCall"
- label: "Away"
value: "Away"
- label: "Presenting"
value: "Presenting"
expiration_duration:
name: Expiration Duration
description: "The expiration of the app presence session. The value is represented in ISO 8601 format for durations"
example: PT1H
required: false
selector:
text:
update_user_preferred_status:
name: Update user preferred Teams status
description: "Update the user's preferred Teams status"
target:
device:
integration: o365
entity:
integration: o365
domain: sensor
fields:
availability:
name: Availability
description: "The base presence information"
example: Busy
required: true
selector:
select:
mode: dropdown
options:
- label: "Available"
value: "Available"
- label: "Busy"
value: "Busy"
- label: "Do Not Disturb"
value: "DoNotDisturb"
- label: "Be Right Back"
value: "BeRightBack"
- label: "Away"
value: "Away"
- label: "Offline"
value: "Offline"
expiration_duration:
name: Expiration Duration
description: "The expiration of the app presence session. The value is represented in ISO 8601 format for durations"
example: PT1H
required: false
selector:
text:
migrate_config:
name: Migrate existing O365 config to MS365
description: "Create disabled MS365 config entries based on existing O365 config"