@digipair/skill-microsoft 0.25.6 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema.fr.json +439 -0
- package/schema.json +90 -90
package/package.json
CHANGED
package/schema.fr.json
ADDED
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-microsoft",
|
|
5
|
+
"summary": "Communication avec les services Microsoft",
|
|
6
|
+
"description": "Cette compétence permet d'utiliser les services Microsoft",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "❖"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/request": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["service"],
|
|
14
|
+
"summary": "Exécute un service Microsoft",
|
|
15
|
+
"parameters": [
|
|
16
|
+
{
|
|
17
|
+
"name": "path",
|
|
18
|
+
"summary": "Chemin du service",
|
|
19
|
+
"required": true,
|
|
20
|
+
"description": "Chemin du service à exécuter",
|
|
21
|
+
"schema": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "method",
|
|
27
|
+
"summary": "Méthode HTTP",
|
|
28
|
+
"required": false,
|
|
29
|
+
"description": "Méthode HTTP à utiliser",
|
|
30
|
+
"schema": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "body",
|
|
36
|
+
"summary": "Valeur",
|
|
37
|
+
"required": false,
|
|
38
|
+
"description": "Valeur à envoyer",
|
|
39
|
+
"schema": {
|
|
40
|
+
"type": "object"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "version",
|
|
45
|
+
"summary": "Version de l'API",
|
|
46
|
+
"required": false,
|
|
47
|
+
"description": "Version de l'API à utiliser",
|
|
48
|
+
"schema": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "headers",
|
|
54
|
+
"summary": "En-têtes",
|
|
55
|
+
"required": false,
|
|
56
|
+
"description": "En-têtes à envoyer",
|
|
57
|
+
"schema": {
|
|
58
|
+
"type": "object"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "OAUTH_CLIENT_ID",
|
|
63
|
+
"summary": "Identifiant du client OAuth",
|
|
64
|
+
"required": false,
|
|
65
|
+
"description": "Identifiant du client OAuth",
|
|
66
|
+
"schema": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "OAUTH_CLIENT_SECRET",
|
|
72
|
+
"summary": "Secret du client OAuth",
|
|
73
|
+
"required": false,
|
|
74
|
+
"description": "Secret du client OAuth",
|
|
75
|
+
"schema": {
|
|
76
|
+
"type": "string"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "TENANT_ID",
|
|
81
|
+
"summary": "ID du locataire",
|
|
82
|
+
"required": false,
|
|
83
|
+
"description": "ID du locataire",
|
|
84
|
+
"schema": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"x-events": []
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"/create": {
|
|
93
|
+
"post": {
|
|
94
|
+
"tags": ["service"],
|
|
95
|
+
"summary": "Ajoute une ressource Microsoft",
|
|
96
|
+
"parameters": [
|
|
97
|
+
{
|
|
98
|
+
"name": "path",
|
|
99
|
+
"summary": "Chemin du service",
|
|
100
|
+
"required": true,
|
|
101
|
+
"description": "Chemin du service à exécuter",
|
|
102
|
+
"schema": {
|
|
103
|
+
"type": "string"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "body",
|
|
108
|
+
"summary": "Valeur",
|
|
109
|
+
"required": false,
|
|
110
|
+
"description": "Valeur à envoyer",
|
|
111
|
+
"schema": {
|
|
112
|
+
"type": "object"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "version",
|
|
117
|
+
"summary": "Version de l'API",
|
|
118
|
+
"required": false,
|
|
119
|
+
"description": "Version de l'API à utiliser",
|
|
120
|
+
"schema": {
|
|
121
|
+
"type": "string"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "headers",
|
|
126
|
+
"summary": "En-têtes",
|
|
127
|
+
"required": false,
|
|
128
|
+
"description": "En-têtes à envoyer",
|
|
129
|
+
"schema": {
|
|
130
|
+
"type": "object"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "OAUTH_CLIENT_ID",
|
|
135
|
+
"summary": "Identifiant du client OAuth",
|
|
136
|
+
"required": false,
|
|
137
|
+
"description": "Identifiant du client OAuth",
|
|
138
|
+
"schema": {
|
|
139
|
+
"type": "string"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "OAUTH_CLIENT_SECRET",
|
|
144
|
+
"summary": "Secret du client OAuth",
|
|
145
|
+
"required": false,
|
|
146
|
+
"description": "Secret du client OAuth",
|
|
147
|
+
"schema": {
|
|
148
|
+
"type": "string"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "TENANT_ID",
|
|
153
|
+
"summary": "ID du locataire",
|
|
154
|
+
"required": false,
|
|
155
|
+
"description": "ID du locataire",
|
|
156
|
+
"schema": {
|
|
157
|
+
"type": "string"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"x-events": []
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"/read": {
|
|
165
|
+
"post": {
|
|
166
|
+
"tags": ["service"],
|
|
167
|
+
"summary": "Lit une ressource Microsoft",
|
|
168
|
+
"parameters": [
|
|
169
|
+
{
|
|
170
|
+
"name": "path",
|
|
171
|
+
"summary": "Chemin du service",
|
|
172
|
+
"required": true,
|
|
173
|
+
"description": "Chemin du service à exécuter",
|
|
174
|
+
"schema": {
|
|
175
|
+
"type": "string"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"name": "version",
|
|
180
|
+
"summary": "Version de l'API",
|
|
181
|
+
"required": false,
|
|
182
|
+
"description": "Version de l'API à utiliser",
|
|
183
|
+
"schema": {
|
|
184
|
+
"type": "string"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "headers",
|
|
189
|
+
"summary": "En-têtes",
|
|
190
|
+
"required": false,
|
|
191
|
+
"description": "En-têtes à envoyer",
|
|
192
|
+
"schema": {
|
|
193
|
+
"type": "object"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "OAUTH_CLIENT_ID",
|
|
198
|
+
"summary": "Identifiant du client OAuth",
|
|
199
|
+
"required": false,
|
|
200
|
+
"description": "Identifiant du client OAuth",
|
|
201
|
+
"schema": {
|
|
202
|
+
"type": "string"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "OAUTH_CLIENT_SECRET",
|
|
207
|
+
"summary": "Secret du client OAuth",
|
|
208
|
+
"required": false,
|
|
209
|
+
"description": "Secret du client OAuth",
|
|
210
|
+
"schema": {
|
|
211
|
+
"type": "string"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "TENANT_ID",
|
|
216
|
+
"summary": "ID du locataire",
|
|
217
|
+
"required": false,
|
|
218
|
+
"description": "ID du locataire",
|
|
219
|
+
"schema": {
|
|
220
|
+
"type": "string"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"x-events": []
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"/update": {
|
|
228
|
+
"post": {
|
|
229
|
+
"tags": ["service"],
|
|
230
|
+
"summary": "Modifie une ressource Microsoft",
|
|
231
|
+
"parameters": [
|
|
232
|
+
{
|
|
233
|
+
"name": "path",
|
|
234
|
+
"summary": "Chemin du service",
|
|
235
|
+
"required": true,
|
|
236
|
+
"description": "Chemin du service à exécuter",
|
|
237
|
+
"schema": {
|
|
238
|
+
"type": "string"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "body",
|
|
243
|
+
"summary": "Valeur",
|
|
244
|
+
"required": false,
|
|
245
|
+
"description": "Valeur à envoyer",
|
|
246
|
+
"schema": {
|
|
247
|
+
"type": "object"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "version",
|
|
252
|
+
"summary": "Version de l'API",
|
|
253
|
+
"required": false,
|
|
254
|
+
"description": "Version de l'API à utiliser",
|
|
255
|
+
"schema": {
|
|
256
|
+
"type": "string"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "headers",
|
|
261
|
+
"summary": "En-têtes",
|
|
262
|
+
"required": false,
|
|
263
|
+
"description": "En-têtes à envoyer",
|
|
264
|
+
"schema": {
|
|
265
|
+
"type": "object"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "OAUTH_CLIENT_ID",
|
|
270
|
+
"summary": "Identifiant du client OAuth",
|
|
271
|
+
"required": false,
|
|
272
|
+
"description": "Identifiant du client OAuth",
|
|
273
|
+
"schema": {
|
|
274
|
+
"type": "string"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "OAUTH_CLIENT_SECRET",
|
|
279
|
+
"summary": "Secret du client OAuth",
|
|
280
|
+
"required": false,
|
|
281
|
+
"description": "Secret du client OAuth",
|
|
282
|
+
"schema": {
|
|
283
|
+
"type": "string"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "TENANT_ID",
|
|
288
|
+
"summary": "ID du locataire",
|
|
289
|
+
"required": false,
|
|
290
|
+
"description": "ID du locataire",
|
|
291
|
+
"schema": {
|
|
292
|
+
"type": "string"
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
],
|
|
296
|
+
"x-events": []
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"/partialUpdate": {
|
|
300
|
+
"post": {
|
|
301
|
+
"tags": ["service"],
|
|
302
|
+
"summary": "Modifie une partie d'une ressource Microsoft",
|
|
303
|
+
"parameters": [
|
|
304
|
+
{
|
|
305
|
+
"name": "path",
|
|
306
|
+
"summary": "Chemin du service",
|
|
307
|
+
"required": true,
|
|
308
|
+
"description": "Chemin du service à exécuter",
|
|
309
|
+
"schema": {
|
|
310
|
+
"type": "string"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"name": "body",
|
|
315
|
+
"summary": "Valeur",
|
|
316
|
+
"required": false,
|
|
317
|
+
"description": "Valeur à envoyer",
|
|
318
|
+
"schema": {
|
|
319
|
+
"type": "object"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"name": "version",
|
|
324
|
+
"summary": "Version de l'API",
|
|
325
|
+
"required": false,
|
|
326
|
+
"description": "Version de l'API à utiliser",
|
|
327
|
+
"schema": {
|
|
328
|
+
"type": "string"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "headers",
|
|
333
|
+
"summary": "En-têtes",
|
|
334
|
+
"required": false,
|
|
335
|
+
"description": "En-têtes à envoyer",
|
|
336
|
+
"schema": {
|
|
337
|
+
"type": "object"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "OAUTH_CLIENT_ID",
|
|
342
|
+
"summary": "Identifiant du client OAuth",
|
|
343
|
+
"required": false,
|
|
344
|
+
"description": "Identifiant du client OAuth",
|
|
345
|
+
"schema": {
|
|
346
|
+
"type": "string"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "OAUTH_CLIENT_SECRET",
|
|
351
|
+
"summary": "Secret du client OAuth",
|
|
352
|
+
"required": false,
|
|
353
|
+
"description": "Secret du client OAuth",
|
|
354
|
+
"schema": {
|
|
355
|
+
"type": "string"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"name": "TENANT_ID",
|
|
360
|
+
"summary": "ID du locataire",
|
|
361
|
+
"required": false,
|
|
362
|
+
"description": "ID du locataire",
|
|
363
|
+
"schema": {
|
|
364
|
+
"type": "string"
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"x-events": []
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"/remove": {
|
|
372
|
+
"post": {
|
|
373
|
+
"tags": ["service"],
|
|
374
|
+
"summary": "Supprime une ressource Microsoft",
|
|
375
|
+
"parameters": [
|
|
376
|
+
{
|
|
377
|
+
"name": "path",
|
|
378
|
+
"summary": "Chemin du service",
|
|
379
|
+
"required": true,
|
|
380
|
+
"description": "Chemin du service à exécuter",
|
|
381
|
+
"schema": {
|
|
382
|
+
"type": "string"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "version",
|
|
387
|
+
"summary": "Version de l'API",
|
|
388
|
+
"required": false,
|
|
389
|
+
"description": "Version de l'API à utiliser",
|
|
390
|
+
"schema": {
|
|
391
|
+
"type": "string"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"name": "headers",
|
|
396
|
+
"summary": "En-têtes",
|
|
397
|
+
"required": false,
|
|
398
|
+
"description": "En-têtes à envoyer",
|
|
399
|
+
"schema": {
|
|
400
|
+
"type": "object"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "OAUTH_CLIENT_ID",
|
|
405
|
+
"summary": "Identifiant du client OAuth",
|
|
406
|
+
"required": false,
|
|
407
|
+
"description": "Identifiant du client OAuth",
|
|
408
|
+
"schema": {
|
|
409
|
+
"type": "string"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "OAUTH_CLIENT_SECRET",
|
|
414
|
+
"summary": "Secret du client OAuth",
|
|
415
|
+
"required": false,
|
|
416
|
+
"description": "Secret du client OAuth",
|
|
417
|
+
"schema": {
|
|
418
|
+
"type": "string"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"name": "TENANT_ID",
|
|
423
|
+
"summary": "ID du locataire",
|
|
424
|
+
"required": false,
|
|
425
|
+
"description": "ID du locataire",
|
|
426
|
+
"schema": {
|
|
427
|
+
"type": "string"
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
],
|
|
431
|
+
"x-events": []
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
"components": {
|
|
436
|
+
"schemas": {}
|
|
437
|
+
},
|
|
438
|
+
"x-scene-blocks": {}
|
|
439
|
+
}
|
package/schema.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"openapi": "3.0.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "@digipair/skill-microsoft",
|
|
5
|
-
"summary": "Communication
|
|
6
|
-
"description": "
|
|
5
|
+
"summary": "Communication with Microsoft services",
|
|
6
|
+
"description": "This skill allows the use of Microsoft services",
|
|
7
7
|
"version": "0.1.0",
|
|
8
8
|
"x-icon": "❖"
|
|
9
9
|
},
|
|
@@ -11,76 +11,76 @@
|
|
|
11
11
|
"/request": {
|
|
12
12
|
"post": {
|
|
13
13
|
"tags": ["service"],
|
|
14
|
-
"summary": "
|
|
14
|
+
"summary": "Executes a Microsoft service",
|
|
15
15
|
"parameters": [
|
|
16
16
|
{
|
|
17
17
|
"name": "path",
|
|
18
|
-
"summary": "
|
|
18
|
+
"summary": "Service path",
|
|
19
19
|
"required": true,
|
|
20
|
-
"description": "
|
|
20
|
+
"description": "Path of the service to execute",
|
|
21
21
|
"schema": {
|
|
22
22
|
"type": "string"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"name": "method",
|
|
27
|
-
"summary": "
|
|
27
|
+
"summary": "HTTP method",
|
|
28
28
|
"required": false,
|
|
29
|
-
"description": "
|
|
29
|
+
"description": "HTTP method to use",
|
|
30
30
|
"schema": {
|
|
31
31
|
"type": "string"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"name": "body",
|
|
36
|
-
"summary": "
|
|
36
|
+
"summary": "Value",
|
|
37
37
|
"required": false,
|
|
38
|
-
"description": "
|
|
38
|
+
"description": "Value to send",
|
|
39
39
|
"schema": {
|
|
40
40
|
"type": "object"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "version",
|
|
45
|
-
"summary": "
|
|
45
|
+
"summary": "API version",
|
|
46
46
|
"required": false,
|
|
47
|
-
"description": "
|
|
47
|
+
"description": "API version to use",
|
|
48
48
|
"schema": {
|
|
49
49
|
"type": "string"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"name": "headers",
|
|
54
|
-
"summary": "
|
|
54
|
+
"summary": "Headers",
|
|
55
55
|
"required": false,
|
|
56
|
-
"description": "
|
|
56
|
+
"description": "Headers to send",
|
|
57
57
|
"schema": {
|
|
58
58
|
"type": "object"
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"name": "OAUTH_CLIENT_ID",
|
|
63
|
-
"summary": "
|
|
63
|
+
"summary": "OAuth client ID",
|
|
64
64
|
"required": false,
|
|
65
|
-
"description": "
|
|
65
|
+
"description": "OAuth client ID",
|
|
66
66
|
"schema": {
|
|
67
67
|
"type": "string"
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
"name": "OAUTH_CLIENT_SECRET",
|
|
72
|
-
"summary": "
|
|
72
|
+
"summary": "OAuth client secret",
|
|
73
73
|
"required": false,
|
|
74
|
-
"description": "
|
|
74
|
+
"description": "OAuth client secret",
|
|
75
75
|
"schema": {
|
|
76
76
|
"type": "string"
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"name": "TENANT_ID",
|
|
81
|
-
"summary": "ID
|
|
81
|
+
"summary": "Tenant ID",
|
|
82
82
|
"required": false,
|
|
83
|
-
"description": "ID
|
|
83
|
+
"description": "Tenant ID",
|
|
84
84
|
"schema": {
|
|
85
85
|
"type": "string"
|
|
86
86
|
}
|
|
@@ -92,67 +92,67 @@
|
|
|
92
92
|
"/create": {
|
|
93
93
|
"post": {
|
|
94
94
|
"tags": ["service"],
|
|
95
|
-
"summary": "
|
|
95
|
+
"summary": "Adds a Microsoft resource",
|
|
96
96
|
"parameters": [
|
|
97
97
|
{
|
|
98
98
|
"name": "path",
|
|
99
|
-
"summary": "
|
|
99
|
+
"summary": "Service path",
|
|
100
100
|
"required": true,
|
|
101
|
-
"description": "
|
|
101
|
+
"description": "Path of the service to execute",
|
|
102
102
|
"schema": {
|
|
103
103
|
"type": "string"
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
"name": "body",
|
|
108
|
-
"summary": "
|
|
108
|
+
"summary": "Value",
|
|
109
109
|
"required": false,
|
|
110
|
-
"description": "
|
|
110
|
+
"description": "Value to send",
|
|
111
111
|
"schema": {
|
|
112
112
|
"type": "object"
|
|
113
113
|
}
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
"name": "version",
|
|
117
|
-
"summary": "
|
|
117
|
+
"summary": "API version",
|
|
118
118
|
"required": false,
|
|
119
|
-
"description": "
|
|
119
|
+
"description": "API version to use",
|
|
120
120
|
"schema": {
|
|
121
121
|
"type": "string"
|
|
122
122
|
}
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"name": "headers",
|
|
126
|
-
"summary": "
|
|
126
|
+
"summary": "Headers",
|
|
127
127
|
"required": false,
|
|
128
|
-
"description": "
|
|
128
|
+
"description": "Headers to send",
|
|
129
129
|
"schema": {
|
|
130
130
|
"type": "object"
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
"name": "OAUTH_CLIENT_ID",
|
|
135
|
-
"summary": "
|
|
135
|
+
"summary": "OAuth client ID",
|
|
136
136
|
"required": false,
|
|
137
|
-
"description": "
|
|
137
|
+
"description": "OAuth client ID",
|
|
138
138
|
"schema": {
|
|
139
139
|
"type": "string"
|
|
140
140
|
}
|
|
141
141
|
},
|
|
142
142
|
{
|
|
143
143
|
"name": "OAUTH_CLIENT_SECRET",
|
|
144
|
-
"summary": "
|
|
144
|
+
"summary": "OAuth client secret",
|
|
145
145
|
"required": false,
|
|
146
|
-
"description": "
|
|
146
|
+
"description": "OAuth client secret",
|
|
147
147
|
"schema": {
|
|
148
148
|
"type": "string"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"name": "TENANT_ID",
|
|
153
|
-
"summary": "ID
|
|
153
|
+
"summary": "Tenant ID",
|
|
154
154
|
"required": false,
|
|
155
|
-
"description": "ID
|
|
155
|
+
"description": "Tenant ID",
|
|
156
156
|
"schema": {
|
|
157
157
|
"type": "string"
|
|
158
158
|
}
|
|
@@ -164,58 +164,58 @@
|
|
|
164
164
|
"/read": {
|
|
165
165
|
"post": {
|
|
166
166
|
"tags": ["service"],
|
|
167
|
-
"summary": "
|
|
167
|
+
"summary": "Reads a Microsoft resource",
|
|
168
168
|
"parameters": [
|
|
169
169
|
{
|
|
170
170
|
"name": "path",
|
|
171
|
-
"summary": "
|
|
171
|
+
"summary": "Service path",
|
|
172
172
|
"required": true,
|
|
173
|
-
"description": "
|
|
173
|
+
"description": "Path of the service to execute",
|
|
174
174
|
"schema": {
|
|
175
175
|
"type": "string"
|
|
176
176
|
}
|
|
177
177
|
},
|
|
178
178
|
{
|
|
179
179
|
"name": "version",
|
|
180
|
-
"summary": "
|
|
180
|
+
"summary": "API version",
|
|
181
181
|
"required": false,
|
|
182
|
-
"description": "
|
|
182
|
+
"description": "API version to use",
|
|
183
183
|
"schema": {
|
|
184
184
|
"type": "string"
|
|
185
185
|
}
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"name": "headers",
|
|
189
|
-
"summary": "
|
|
189
|
+
"summary": "Headers",
|
|
190
190
|
"required": false,
|
|
191
|
-
"description": "
|
|
191
|
+
"description": "Headers to send",
|
|
192
192
|
"schema": {
|
|
193
193
|
"type": "object"
|
|
194
194
|
}
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"name": "OAUTH_CLIENT_ID",
|
|
198
|
-
"summary": "
|
|
198
|
+
"summary": "OAuth client ID",
|
|
199
199
|
"required": false,
|
|
200
|
-
"description": "
|
|
200
|
+
"description": "OAuth client ID",
|
|
201
201
|
"schema": {
|
|
202
202
|
"type": "string"
|
|
203
203
|
}
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"name": "OAUTH_CLIENT_SECRET",
|
|
207
|
-
"summary": "
|
|
207
|
+
"summary": "OAuth client secret",
|
|
208
208
|
"required": false,
|
|
209
|
-
"description": "
|
|
209
|
+
"description": "OAuth client secret",
|
|
210
210
|
"schema": {
|
|
211
211
|
"type": "string"
|
|
212
212
|
}
|
|
213
213
|
},
|
|
214
214
|
{
|
|
215
215
|
"name": "TENANT_ID",
|
|
216
|
-
"summary": "ID
|
|
216
|
+
"summary": "Tenant ID",
|
|
217
217
|
"required": false,
|
|
218
|
-
"description": "ID
|
|
218
|
+
"description": "Tenant ID",
|
|
219
219
|
"schema": {
|
|
220
220
|
"type": "string"
|
|
221
221
|
}
|
|
@@ -227,67 +227,67 @@
|
|
|
227
227
|
"/update": {
|
|
228
228
|
"post": {
|
|
229
229
|
"tags": ["service"],
|
|
230
|
-
"summary": "
|
|
230
|
+
"summary": "Modifies a Microsoft resource",
|
|
231
231
|
"parameters": [
|
|
232
232
|
{
|
|
233
233
|
"name": "path",
|
|
234
|
-
"summary": "
|
|
234
|
+
"summary": "Service path",
|
|
235
235
|
"required": true,
|
|
236
|
-
"description": "
|
|
236
|
+
"description": "Path of the service to execute",
|
|
237
237
|
"schema": {
|
|
238
238
|
"type": "string"
|
|
239
239
|
}
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"name": "body",
|
|
243
|
-
"summary": "
|
|
243
|
+
"summary": "Value",
|
|
244
244
|
"required": false,
|
|
245
|
-
"description": "
|
|
245
|
+
"description": "Value to send",
|
|
246
246
|
"schema": {
|
|
247
247
|
"type": "object"
|
|
248
248
|
}
|
|
249
249
|
},
|
|
250
250
|
{
|
|
251
251
|
"name": "version",
|
|
252
|
-
"summary": "
|
|
252
|
+
"summary": "API version",
|
|
253
253
|
"required": false,
|
|
254
|
-
"description": "
|
|
254
|
+
"description": "API version to use",
|
|
255
255
|
"schema": {
|
|
256
256
|
"type": "string"
|
|
257
257
|
}
|
|
258
258
|
},
|
|
259
259
|
{
|
|
260
260
|
"name": "headers",
|
|
261
|
-
"summary": "
|
|
261
|
+
"summary": "Headers",
|
|
262
262
|
"required": false,
|
|
263
|
-
"description": "
|
|
263
|
+
"description": "Headers to send",
|
|
264
264
|
"schema": {
|
|
265
265
|
"type": "object"
|
|
266
266
|
}
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"name": "OAUTH_CLIENT_ID",
|
|
270
|
-
"summary": "
|
|
270
|
+
"summary": "OAuth client ID",
|
|
271
271
|
"required": false,
|
|
272
|
-
"description": "
|
|
272
|
+
"description": "OAuth client ID",
|
|
273
273
|
"schema": {
|
|
274
274
|
"type": "string"
|
|
275
275
|
}
|
|
276
276
|
},
|
|
277
277
|
{
|
|
278
278
|
"name": "OAUTH_CLIENT_SECRET",
|
|
279
|
-
"summary": "
|
|
279
|
+
"summary": "OAuth client secret",
|
|
280
280
|
"required": false,
|
|
281
|
-
"description": "
|
|
281
|
+
"description": "OAuth client secret",
|
|
282
282
|
"schema": {
|
|
283
283
|
"type": "string"
|
|
284
284
|
}
|
|
285
285
|
},
|
|
286
286
|
{
|
|
287
287
|
"name": "TENANT_ID",
|
|
288
|
-
"summary": "ID
|
|
288
|
+
"summary": "Tenant ID",
|
|
289
289
|
"required": false,
|
|
290
|
-
"description": "ID
|
|
290
|
+
"description": "Tenant ID",
|
|
291
291
|
"schema": {
|
|
292
292
|
"type": "string"
|
|
293
293
|
}
|
|
@@ -299,67 +299,67 @@
|
|
|
299
299
|
"/partialUpdate": {
|
|
300
300
|
"post": {
|
|
301
301
|
"tags": ["service"],
|
|
302
|
-
"summary": "
|
|
302
|
+
"summary": "Modifies part of a Microsoft resource",
|
|
303
303
|
"parameters": [
|
|
304
304
|
{
|
|
305
305
|
"name": "path",
|
|
306
|
-
"summary": "
|
|
306
|
+
"summary": "Service path",
|
|
307
307
|
"required": true,
|
|
308
|
-
"description": "
|
|
308
|
+
"description": "Path of the service to execute",
|
|
309
309
|
"schema": {
|
|
310
310
|
"type": "string"
|
|
311
311
|
}
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"name": "body",
|
|
315
|
-
"summary": "
|
|
315
|
+
"summary": "Value",
|
|
316
316
|
"required": false,
|
|
317
|
-
"description": "
|
|
317
|
+
"description": "Value to send",
|
|
318
318
|
"schema": {
|
|
319
319
|
"type": "object"
|
|
320
320
|
}
|
|
321
321
|
},
|
|
322
322
|
{
|
|
323
323
|
"name": "version",
|
|
324
|
-
"summary": "
|
|
324
|
+
"summary": "API version",
|
|
325
325
|
"required": false,
|
|
326
|
-
"description": "
|
|
326
|
+
"description": "API version to use",
|
|
327
327
|
"schema": {
|
|
328
328
|
"type": "string"
|
|
329
329
|
}
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"name": "headers",
|
|
333
|
-
"summary": "
|
|
333
|
+
"summary": "Headers",
|
|
334
334
|
"required": false,
|
|
335
|
-
"description": "
|
|
335
|
+
"description": "Headers to send",
|
|
336
336
|
"schema": {
|
|
337
337
|
"type": "object"
|
|
338
338
|
}
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"name": "OAUTH_CLIENT_ID",
|
|
342
|
-
"summary": "
|
|
342
|
+
"summary": "OAuth client ID",
|
|
343
343
|
"required": false,
|
|
344
|
-
"description": "
|
|
344
|
+
"description": "OAuth client ID",
|
|
345
345
|
"schema": {
|
|
346
346
|
"type": "string"
|
|
347
347
|
}
|
|
348
348
|
},
|
|
349
349
|
{
|
|
350
350
|
"name": "OAUTH_CLIENT_SECRET",
|
|
351
|
-
"summary": "
|
|
351
|
+
"summary": "OAuth client secret",
|
|
352
352
|
"required": false,
|
|
353
|
-
"description": "
|
|
353
|
+
"description": "OAuth client secret",
|
|
354
354
|
"schema": {
|
|
355
355
|
"type": "string"
|
|
356
356
|
}
|
|
357
357
|
},
|
|
358
358
|
{
|
|
359
359
|
"name": "TENANT_ID",
|
|
360
|
-
"summary": "ID
|
|
360
|
+
"summary": "Tenant ID",
|
|
361
361
|
"required": false,
|
|
362
|
-
"description": "ID
|
|
362
|
+
"description": "Tenant ID",
|
|
363
363
|
"schema": {
|
|
364
364
|
"type": "string"
|
|
365
365
|
}
|
|
@@ -371,58 +371,58 @@
|
|
|
371
371
|
"/remove": {
|
|
372
372
|
"post": {
|
|
373
373
|
"tags": ["service"],
|
|
374
|
-
"summary": "
|
|
374
|
+
"summary": "Deletes a Microsoft resource",
|
|
375
375
|
"parameters": [
|
|
376
376
|
{
|
|
377
377
|
"name": "path",
|
|
378
|
-
"summary": "
|
|
378
|
+
"summary": "Service path",
|
|
379
379
|
"required": true,
|
|
380
|
-
"description": "
|
|
380
|
+
"description": "Path of the service to execute",
|
|
381
381
|
"schema": {
|
|
382
382
|
"type": "string"
|
|
383
383
|
}
|
|
384
384
|
},
|
|
385
385
|
{
|
|
386
386
|
"name": "version",
|
|
387
|
-
"summary": "
|
|
387
|
+
"summary": "API version",
|
|
388
388
|
"required": false,
|
|
389
|
-
"description": "
|
|
389
|
+
"description": "API version to use",
|
|
390
390
|
"schema": {
|
|
391
391
|
"type": "string"
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
394
|
{
|
|
395
395
|
"name": "headers",
|
|
396
|
-
"summary": "
|
|
396
|
+
"summary": "Headers",
|
|
397
397
|
"required": false,
|
|
398
|
-
"description": "
|
|
398
|
+
"description": "Headers to send",
|
|
399
399
|
"schema": {
|
|
400
400
|
"type": "object"
|
|
401
401
|
}
|
|
402
402
|
},
|
|
403
403
|
{
|
|
404
404
|
"name": "OAUTH_CLIENT_ID",
|
|
405
|
-
"summary": "
|
|
405
|
+
"summary": "OAuth client ID",
|
|
406
406
|
"required": false,
|
|
407
|
-
"description": "
|
|
407
|
+
"description": "OAuth client ID",
|
|
408
408
|
"schema": {
|
|
409
409
|
"type": "string"
|
|
410
410
|
}
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
413
|
"name": "OAUTH_CLIENT_SECRET",
|
|
414
|
-
"summary": "
|
|
414
|
+
"summary": "OAuth client secret",
|
|
415
415
|
"required": false,
|
|
416
|
-
"description": "
|
|
416
|
+
"description": "OAuth client secret",
|
|
417
417
|
"schema": {
|
|
418
418
|
"type": "string"
|
|
419
419
|
}
|
|
420
420
|
},
|
|
421
421
|
{
|
|
422
422
|
"name": "TENANT_ID",
|
|
423
|
-
"summary": "ID
|
|
423
|
+
"summary": "Tenant ID",
|
|
424
424
|
"required": false,
|
|
425
|
-
"description": "ID
|
|
425
|
+
"description": "Tenant ID",
|
|
426
426
|
"schema": {
|
|
427
427
|
"type": "string"
|
|
428
428
|
}
|