@itentialopensource/adapter-microsoft_graph 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintignore +6 -0
- package/.eslintrc.js +18 -0
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +17 -0
- package/.gitlab/issue_templates/bugReportTemplate.md +42 -0
- package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
- package/.jshintrc +0 -0
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +170 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +172 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +641 -0
- package/README.md +337 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +18798 -0
- package/adapterBase.js +1787 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/Applications/action.json +127 -0
- package/entities/Applications/schema.json +35 -0
- package/entities/AzureADDevice/action.json +106 -0
- package/entities/AzureADDevice/schema.json +45 -0
- package/entities/Batch/action.json +24 -0
- package/entities/Batch/schema.json +19 -0
- package/entities/CaseCreation/action.json +249 -0
- package/entities/CaseCreation/schema.json +30 -0
- package/entities/Catalog/action.json +25 -0
- package/entities/Catalog/schema.json +19 -0
- package/entities/ConnectionSetup/action.json +148 -0
- package/entities/ConnectionSetup/schema.json +25 -0
- package/entities/ContentSync/action.json +65 -0
- package/entities/ContentSync/schema.json +21 -0
- package/entities/CreateDSR/action.json +45 -0
- package/entities/CreateDSR/schema.json +20 -0
- package/entities/Deployment/action.json +106 -0
- package/entities/Deployment/schema.json +34 -0
- package/entities/DeploymentAudience/action.json +66 -0
- package/entities/DeploymentAudience/schema.json +32 -0
- package/entities/Events/action.json +108 -0
- package/entities/Events/schema.json +34 -0
- package/entities/Files/action.json +108 -0
- package/entities/Files/schema.json +23 -0
- package/entities/Groups/action.json +25 -0
- package/entities/Groups/schema.json +19 -0
- package/entities/IdentitySync/action.json +105 -0
- package/entities/IdentitySync/schema.json +23 -0
- package/entities/Insights/action.json +46 -0
- package/entities/Insights/schema.json +20 -0
- package/entities/LabelManagement/action.json +106 -0
- package/entities/LabelManagement/schema.json +23 -0
- package/entities/Mail/action.json +212 -0
- package/entities/Mail/schema.json +72 -0
- package/entities/Memberships/action.json +167 -0
- package/entities/Memberships/schema.json +70 -0
- package/entities/Misc/action.json +66 -0
- package/entities/Misc/schema.json +21 -0
- package/entities/Notebooks/action.json +107 -0
- package/entities/Notebooks/schema.json +34 -0
- package/entities/OpenExtensions/action.json +65 -0
- package/entities/OpenExtensions/schema.json +54 -0
- package/entities/People/action.json +46 -0
- package/entities/People/schema.json +31 -0
- package/entities/SchemaExtensions/action.json +65 -0
- package/entities/SchemaExtensions/schema.json +32 -0
- package/entities/Search/action.json +24 -0
- package/entities/Search/schema.json +19 -0
- package/entities/Security/action.json +151 -0
- package/entities/Security/schema.json +58 -0
- package/entities/SharePoint/action.json +214 -0
- package/entities/SharePoint/schema.json +39 -0
- package/entities/Subscriptions/action.json +65 -0
- package/entities/Subscriptions/schema.json +32 -0
- package/entities/TasksPlanner/action.json +272 -0
- package/entities/TasksPlanner/schema.json +86 -0
- package/entities/TasksTodo/action.json +187 -0
- package/entities/TasksTodo/schema.json +49 -0
- package/entities/Teams/action.json +519 -0
- package/entities/Teams/schema.json +120 -0
- package/entities/TrackDSRStatus/action.json +108 -0
- package/entities/TrackDSRStatus/schema.json +23 -0
- package/entities/TriggerEventForExistingLabel/action.json +108 -0
- package/entities/TriggerEventForExistingLabel/schema.json +23 -0
- package/entities/Users/action.json +213 -0
- package/entities/Users/schema.json +50 -0
- package/entities/WorkflowAutomation/action.json +249 -0
- package/entities/WorkflowAutomation/schema.json +30 -0
- package/error.json +190 -0
- package/package.json +87 -0
- package/pronghorn.json +8654 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1248 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/creationReport.json +1715 -0
- package/report/graph.json +14709 -0
- package/sampleProperties.json +195 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +6059 -0
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +7492 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +178 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +225 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +246 -0
- package/utils/tbUtils.js +490 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +195 -0
- package/workflows/README.md +3 -0
@@ -0,0 +1,1715 @@
|
|
1
|
+
{
|
2
|
+
"errors": [],
|
3
|
+
"statistics": [
|
4
|
+
{
|
5
|
+
"owner": "errorJson",
|
6
|
+
"description": "Standard adapter errors available for use",
|
7
|
+
"value": 31
|
8
|
+
},
|
9
|
+
{
|
10
|
+
"owner": "packageJson",
|
11
|
+
"description": "Number of production dependencies",
|
12
|
+
"value": 16
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"owner": "packageJson",
|
16
|
+
"description": "Number of development dependencies",
|
17
|
+
"value": 7
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"owner": "packageJson",
|
21
|
+
"description": "Number of npm scripts",
|
22
|
+
"value": 22
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"owner": "packageJson",
|
26
|
+
"description": "Runtime Library dependency",
|
27
|
+
"value": "^4.48.0"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"owner": "propertiesSchemaJson",
|
31
|
+
"description": "Adapter properties defined in the propertiesSchema file",
|
32
|
+
"value": 70
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"owner": "adapterJS",
|
36
|
+
"description": "Lines of code generated in adapter.js",
|
37
|
+
"value": 18799
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"owner": "adapterJS",
|
41
|
+
"description": "Number of Functions added to adapter.js",
|
42
|
+
"value": 202
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"owner": "pronghornJson",
|
46
|
+
"description": "Number of Methods added to pronghorn.json",
|
47
|
+
"value": 202
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"owner": "markdown",
|
51
|
+
"description": "Number of lines in the README.md",
|
52
|
+
"value": 338
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"owner": "markdown",
|
56
|
+
"description": "Number of lines in the SUMMARY.md",
|
57
|
+
"value": 9
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"owner": "markdown",
|
61
|
+
"description": "Number of lines in the PROPERTIES.md",
|
62
|
+
"value": 642
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"owner": "markdown",
|
66
|
+
"description": "Number of lines in the TROUBLESHOOT.md",
|
67
|
+
"value": 48
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"owner": "markdown",
|
71
|
+
"description": "Number of lines in the ENHANCE.md",
|
72
|
+
"value": 70
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"owner": "markdown",
|
76
|
+
"description": "Number of lines in the BROKER.md",
|
77
|
+
"value": 200
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"owner": "markdown",
|
81
|
+
"description": "Number of lines in the CALLS.md",
|
82
|
+
"value": 171
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"owner": "markdown",
|
86
|
+
"description": "Number of lines in the AUTH.md",
|
87
|
+
"value": 40
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"owner": "markdown",
|
91
|
+
"description": "Number of lines in the SYSTEMINFO.md",
|
92
|
+
"value": 11
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"owner": "unitTestJS",
|
96
|
+
"description": "Number of lines of code in unit tests",
|
97
|
+
"value": 7493
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"owner": "unitTestJS",
|
101
|
+
"description": "Number of unit tests",
|
102
|
+
"value": 478
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"owner": "integrationTestJS",
|
106
|
+
"description": "Number of lines of code in integration tests",
|
107
|
+
"value": 6060
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"owner": "integrationTestJS",
|
111
|
+
"description": "Number of integration tests",
|
112
|
+
"value": 207
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"owner": "actionJson",
|
116
|
+
"description": "Number of actions for Applications entity",
|
117
|
+
"value": 6
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"owner": "actionJson",
|
121
|
+
"description": "Number of actions for Batch entity",
|
122
|
+
"value": 1
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"owner": "actionJson",
|
126
|
+
"description": "Number of actions for CreateDSR entity",
|
127
|
+
"value": 2
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"owner": "actionJson",
|
131
|
+
"description": "Number of actions for TrackDSRStatus entity",
|
132
|
+
"value": 5
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"owner": "actionJson",
|
136
|
+
"description": "Number of actions for LabelManagement entity",
|
137
|
+
"value": 5
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"owner": "actionJson",
|
141
|
+
"description": "Number of actions for TriggerEventForExistingLabel entity",
|
142
|
+
"value": 5
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"owner": "actionJson",
|
146
|
+
"description": "Number of actions for Events entity",
|
147
|
+
"value": 5
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"owner": "actionJson",
|
151
|
+
"description": "Number of actions for Files entity",
|
152
|
+
"value": 5
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"owner": "actionJson",
|
156
|
+
"description": "Number of actions for Groups entity",
|
157
|
+
"value": 1
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"owner": "actionJson",
|
161
|
+
"description": "Number of actions for SchemaExtensions entity",
|
162
|
+
"value": 3
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"owner": "actionJson",
|
166
|
+
"description": "Number of actions for Teams entity",
|
167
|
+
"value": 25
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"owner": "actionJson",
|
171
|
+
"description": "Number of actions for Insights entity",
|
172
|
+
"value": 2
|
173
|
+
},
|
174
|
+
{
|
175
|
+
"owner": "actionJson",
|
176
|
+
"description": "Number of actions for Mail entity",
|
177
|
+
"value": 10
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"owner": "actionJson",
|
181
|
+
"description": "Number of actions for Notebooks entity",
|
182
|
+
"value": 5
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"owner": "actionJson",
|
186
|
+
"description": "Number of actions for OpenExtensions entity",
|
187
|
+
"value": 3
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"owner": "actionJson",
|
191
|
+
"description": "Number of actions for People entity",
|
192
|
+
"value": 2
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"owner": "actionJson",
|
196
|
+
"description": "Number of actions for Search entity",
|
197
|
+
"value": 1
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"owner": "actionJson",
|
201
|
+
"description": "Number of actions for CaseCreation entity",
|
202
|
+
"value": 12
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"owner": "actionJson",
|
206
|
+
"description": "Number of actions for WorkflowAutomation entity",
|
207
|
+
"value": 12
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"owner": "actionJson",
|
211
|
+
"description": "Number of actions for Security entity",
|
212
|
+
"value": 7
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"owner": "actionJson",
|
216
|
+
"description": "Number of actions for SharePoint entity",
|
217
|
+
"value": 10
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"owner": "actionJson",
|
221
|
+
"description": "Number of actions for Subscriptions entity",
|
222
|
+
"value": 3
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"owner": "actionJson",
|
226
|
+
"description": "Number of actions for TasksPlanner entity",
|
227
|
+
"value": 13
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"owner": "actionJson",
|
231
|
+
"description": "Number of actions for TasksTodo entity",
|
232
|
+
"value": 9
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"owner": "actionJson",
|
236
|
+
"description": "Number of actions for Users entity",
|
237
|
+
"value": 10
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"owner": "actionJson",
|
241
|
+
"description": "Number of actions for Catalog entity",
|
242
|
+
"value": 1
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"owner": "actionJson",
|
246
|
+
"description": "Number of actions for DeploymentAudience entity",
|
247
|
+
"value": 3
|
248
|
+
},
|
249
|
+
{
|
250
|
+
"owner": "actionJson",
|
251
|
+
"description": "Number of actions for Deployment entity",
|
252
|
+
"value": 5
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"owner": "actionJson",
|
256
|
+
"description": "Number of actions for AzureADDevice entity",
|
257
|
+
"value": 5
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"owner": "actionJson",
|
261
|
+
"description": "Number of actions for ConnectionSetup entity",
|
262
|
+
"value": 7
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"owner": "actionJson",
|
266
|
+
"description": "Number of actions for ContentSync entity",
|
267
|
+
"value": 3
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"owner": "actionJson",
|
271
|
+
"description": "Number of actions for IdentitySync entity",
|
272
|
+
"value": 5
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"owner": "actionJson",
|
276
|
+
"description": "Number of actions for Memberships entity",
|
277
|
+
"value": 8
|
278
|
+
},
|
279
|
+
{
|
280
|
+
"owner": "actionJson",
|
281
|
+
"description": "Number of actions for Misc entity",
|
282
|
+
"value": 3
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"owner": "actionJson",
|
286
|
+
"description": "Total number of actions",
|
287
|
+
"value": 202
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"owner": "actionJson",
|
291
|
+
"description": "Total number of entities",
|
292
|
+
"value": 34
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"owner": "schemaJson",
|
296
|
+
"description": "Number of schemas for Applications entity",
|
297
|
+
"value": 1
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"owner": "schemaJson",
|
301
|
+
"description": "Number of schemas for Batch entity",
|
302
|
+
"value": 1
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"owner": "schemaJson",
|
306
|
+
"description": "Number of schemas for CreateDSR entity",
|
307
|
+
"value": 1
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"owner": "schemaJson",
|
311
|
+
"description": "Number of schemas for TrackDSRStatus entity",
|
312
|
+
"value": 1
|
313
|
+
},
|
314
|
+
{
|
315
|
+
"owner": "schemaJson",
|
316
|
+
"description": "Number of schemas for LabelManagement entity",
|
317
|
+
"value": 1
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"owner": "schemaJson",
|
321
|
+
"description": "Number of schemas for TriggerEventForExistingLabel entity",
|
322
|
+
"value": 1
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"owner": "schemaJson",
|
326
|
+
"description": "Number of schemas for Events entity",
|
327
|
+
"value": 1
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"owner": "schemaJson",
|
331
|
+
"description": "Number of schemas for Files entity",
|
332
|
+
"value": 1
|
333
|
+
},
|
334
|
+
{
|
335
|
+
"owner": "schemaJson",
|
336
|
+
"description": "Number of schemas for Groups entity",
|
337
|
+
"value": 1
|
338
|
+
},
|
339
|
+
{
|
340
|
+
"owner": "schemaJson",
|
341
|
+
"description": "Number of schemas for SchemaExtensions entity",
|
342
|
+
"value": 1
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"owner": "schemaJson",
|
346
|
+
"description": "Number of schemas for Teams entity",
|
347
|
+
"value": 1
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"owner": "schemaJson",
|
351
|
+
"description": "Number of schemas for Insights entity",
|
352
|
+
"value": 1
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"owner": "schemaJson",
|
356
|
+
"description": "Number of schemas for Mail entity",
|
357
|
+
"value": 1
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"owner": "schemaJson",
|
361
|
+
"description": "Number of schemas for Notebooks entity",
|
362
|
+
"value": 1
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"owner": "schemaJson",
|
366
|
+
"description": "Number of schemas for OpenExtensions entity",
|
367
|
+
"value": 1
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"owner": "schemaJson",
|
371
|
+
"description": "Number of schemas for People entity",
|
372
|
+
"value": 1
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"owner": "schemaJson",
|
376
|
+
"description": "Number of schemas for Search entity",
|
377
|
+
"value": 1
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"owner": "schemaJson",
|
381
|
+
"description": "Number of schemas for CaseCreation entity",
|
382
|
+
"value": 1
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"owner": "schemaJson",
|
386
|
+
"description": "Number of schemas for WorkflowAutomation entity",
|
387
|
+
"value": 1
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"owner": "schemaJson",
|
391
|
+
"description": "Number of schemas for Security entity",
|
392
|
+
"value": 1
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"owner": "schemaJson",
|
396
|
+
"description": "Number of schemas for SharePoint entity",
|
397
|
+
"value": 1
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"owner": "schemaJson",
|
401
|
+
"description": "Number of schemas for Subscriptions entity",
|
402
|
+
"value": 1
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"owner": "schemaJson",
|
406
|
+
"description": "Number of schemas for TasksPlanner entity",
|
407
|
+
"value": 1
|
408
|
+
},
|
409
|
+
{
|
410
|
+
"owner": "schemaJson",
|
411
|
+
"description": "Number of schemas for TasksTodo entity",
|
412
|
+
"value": 1
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"owner": "schemaJson",
|
416
|
+
"description": "Number of schemas for Users entity",
|
417
|
+
"value": 1
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"owner": "schemaJson",
|
421
|
+
"description": "Number of schemas for Catalog entity",
|
422
|
+
"value": 1
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"owner": "schemaJson",
|
426
|
+
"description": "Number of schemas for DeploymentAudience entity",
|
427
|
+
"value": 1
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"owner": "schemaJson",
|
431
|
+
"description": "Number of schemas for Deployment entity",
|
432
|
+
"value": 1
|
433
|
+
},
|
434
|
+
{
|
435
|
+
"owner": "schemaJson",
|
436
|
+
"description": "Number of schemas for AzureADDevice entity",
|
437
|
+
"value": 1
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"owner": "schemaJson",
|
441
|
+
"description": "Number of schemas for ConnectionSetup entity",
|
442
|
+
"value": 1
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"owner": "schemaJson",
|
446
|
+
"description": "Number of schemas for ContentSync entity",
|
447
|
+
"value": 1
|
448
|
+
},
|
449
|
+
{
|
450
|
+
"owner": "schemaJson",
|
451
|
+
"description": "Number of schemas for IdentitySync entity",
|
452
|
+
"value": 1
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"owner": "schemaJson",
|
456
|
+
"description": "Number of schemas for Memberships entity",
|
457
|
+
"value": 1
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"owner": "schemaJson",
|
461
|
+
"description": "Number of schemas for Misc entity",
|
462
|
+
"value": 1
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"owner": "schemaJson",
|
466
|
+
"description": "Total number of schemas",
|
467
|
+
"value": 34
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"owner": "mockdata",
|
471
|
+
"description": "Number of mock data files for Applications entity",
|
472
|
+
"value": 0
|
473
|
+
},
|
474
|
+
{
|
475
|
+
"owner": "mockdata",
|
476
|
+
"description": "Number of mock data files for Batch entity",
|
477
|
+
"value": 0
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"owner": "mockdata",
|
481
|
+
"description": "Number of mock data files for CreateDSR entity",
|
482
|
+
"value": 0
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"owner": "mockdata",
|
486
|
+
"description": "Number of mock data files for TrackDSRStatus entity",
|
487
|
+
"value": 0
|
488
|
+
},
|
489
|
+
{
|
490
|
+
"owner": "mockdata",
|
491
|
+
"description": "Number of mock data files for LabelManagement entity",
|
492
|
+
"value": 0
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"owner": "mockdata",
|
496
|
+
"description": "Number of mock data files for TriggerEventForExistingLabel entity",
|
497
|
+
"value": 0
|
498
|
+
},
|
499
|
+
{
|
500
|
+
"owner": "mockdata",
|
501
|
+
"description": "Number of mock data files for Events entity",
|
502
|
+
"value": 0
|
503
|
+
},
|
504
|
+
{
|
505
|
+
"owner": "mockdata",
|
506
|
+
"description": "Number of mock data files for Files entity",
|
507
|
+
"value": 0
|
508
|
+
},
|
509
|
+
{
|
510
|
+
"owner": "mockdata",
|
511
|
+
"description": "Number of mock data files for Groups entity",
|
512
|
+
"value": 0
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"owner": "mockdata",
|
516
|
+
"description": "Number of mock data files for SchemaExtensions entity",
|
517
|
+
"value": 0
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"owner": "mockdata",
|
521
|
+
"description": "Number of mock data files for Teams entity",
|
522
|
+
"value": 0
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"owner": "mockdata",
|
526
|
+
"description": "Number of mock data files for Insights entity",
|
527
|
+
"value": 0
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"owner": "mockdata",
|
531
|
+
"description": "Number of mock data files for Mail entity",
|
532
|
+
"value": 0
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"owner": "mockdata",
|
536
|
+
"description": "Number of mock data files for Notebooks entity",
|
537
|
+
"value": 0
|
538
|
+
},
|
539
|
+
{
|
540
|
+
"owner": "mockdata",
|
541
|
+
"description": "Number of mock data files for OpenExtensions entity",
|
542
|
+
"value": 0
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"owner": "mockdata",
|
546
|
+
"description": "Number of mock data files for People entity",
|
547
|
+
"value": 0
|
548
|
+
},
|
549
|
+
{
|
550
|
+
"owner": "mockdata",
|
551
|
+
"description": "Number of mock data files for Search entity",
|
552
|
+
"value": 0
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"owner": "mockdata",
|
556
|
+
"description": "Number of mock data files for CaseCreation entity",
|
557
|
+
"value": 0
|
558
|
+
},
|
559
|
+
{
|
560
|
+
"owner": "mockdata",
|
561
|
+
"description": "Number of mock data files for WorkflowAutomation entity",
|
562
|
+
"value": 0
|
563
|
+
},
|
564
|
+
{
|
565
|
+
"owner": "mockdata",
|
566
|
+
"description": "Number of mock data files for Security entity",
|
567
|
+
"value": 0
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"owner": "mockdata",
|
571
|
+
"description": "Number of mock data files for SharePoint entity",
|
572
|
+
"value": 0
|
573
|
+
},
|
574
|
+
{
|
575
|
+
"owner": "mockdata",
|
576
|
+
"description": "Number of mock data files for Subscriptions entity",
|
577
|
+
"value": 0
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"owner": "mockdata",
|
581
|
+
"description": "Number of mock data files for TasksPlanner entity",
|
582
|
+
"value": 0
|
583
|
+
},
|
584
|
+
{
|
585
|
+
"owner": "mockdata",
|
586
|
+
"description": "Number of mock data files for TasksTodo entity",
|
587
|
+
"value": 0
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"owner": "mockdata",
|
591
|
+
"description": "Number of mock data files for Users entity",
|
592
|
+
"value": 0
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"owner": "mockdata",
|
596
|
+
"description": "Number of mock data files for Catalog entity",
|
597
|
+
"value": 0
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"owner": "mockdata",
|
601
|
+
"description": "Number of mock data files for DeploymentAudience entity",
|
602
|
+
"value": 0
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"owner": "mockdata",
|
606
|
+
"description": "Number of mock data files for Deployment entity",
|
607
|
+
"value": 0
|
608
|
+
},
|
609
|
+
{
|
610
|
+
"owner": "mockdata",
|
611
|
+
"description": "Number of mock data files for AzureADDevice entity",
|
612
|
+
"value": 0
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"owner": "mockdata",
|
616
|
+
"description": "Number of mock data files for ConnectionSetup entity",
|
617
|
+
"value": 0
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"owner": "mockdata",
|
621
|
+
"description": "Number of mock data files for ContentSync entity",
|
622
|
+
"value": 0
|
623
|
+
},
|
624
|
+
{
|
625
|
+
"owner": "mockdata",
|
626
|
+
"description": "Number of mock data files for IdentitySync entity",
|
627
|
+
"value": 0
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"owner": "mockdata",
|
631
|
+
"description": "Number of mock data files for Memberships entity",
|
632
|
+
"value": 0
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"owner": "mockdata",
|
636
|
+
"description": "Number of mock data files for Misc entity",
|
637
|
+
"value": 0
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"owner": "mockdata",
|
641
|
+
"description": "Total number of mock data files",
|
642
|
+
"value": 0
|
643
|
+
},
|
644
|
+
{
|
645
|
+
"owner": "actionJson",
|
646
|
+
"description": "Number of actions for .system entity",
|
647
|
+
"value": 2
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"owner": "schemaJson",
|
651
|
+
"description": "Number of schemas for .system entity",
|
652
|
+
"value": 3
|
653
|
+
},
|
654
|
+
{
|
655
|
+
"owner": "mockdata",
|
656
|
+
"description": "Number of mock data files for .system entity",
|
657
|
+
"value": 2
|
658
|
+
},
|
659
|
+
{
|
660
|
+
"owner": "System",
|
661
|
+
"description": "System entity files",
|
662
|
+
"value": 6
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"owner": "usecases",
|
666
|
+
"description": "Number of workflows",
|
667
|
+
"value": 0
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"owner": "staticFile",
|
671
|
+
"description": "Number of lines of code in adapterBase.js",
|
672
|
+
"value": 1788
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"owner": "staticFile",
|
676
|
+
"description": "Number of static files added",
|
677
|
+
"value": 38
|
678
|
+
},
|
679
|
+
{
|
680
|
+
"owner": "Overall",
|
681
|
+
"description": "Total lines of Code",
|
682
|
+
"value": 34140
|
683
|
+
},
|
684
|
+
{
|
685
|
+
"owner": "Overall",
|
686
|
+
"description": "Total Tests",
|
687
|
+
"value": 685
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"owner": "Overall",
|
691
|
+
"description": "Total Files",
|
692
|
+
"value": 120
|
693
|
+
}
|
694
|
+
],
|
695
|
+
"warnings": [],
|
696
|
+
"apiParsingReport": {
|
697
|
+
"no_mockdata": [
|
698
|
+
{
|
699
|
+
"fnName": "getapplications",
|
700
|
+
"method": "get",
|
701
|
+
"path": "/v1.0/applications"
|
702
|
+
},
|
703
|
+
{
|
704
|
+
"fnName": "createanapplication",
|
705
|
+
"method": "post",
|
706
|
+
"path": "/v1.0/applications"
|
707
|
+
},
|
708
|
+
{
|
709
|
+
"fnName": "getapplication",
|
710
|
+
"method": "get",
|
711
|
+
"path": "/v1.0/applications/{ApplicationId}"
|
712
|
+
},
|
713
|
+
{
|
714
|
+
"fnName": "updateapplication",
|
715
|
+
"method": "patch",
|
716
|
+
"path": "/v1.0/applications/{ApplicationId}"
|
717
|
+
},
|
718
|
+
{
|
719
|
+
"fnName": "getapplicationowners",
|
720
|
+
"method": "get",
|
721
|
+
"path": "/v1.0/applications/{ApplicationId}/owners"
|
722
|
+
},
|
723
|
+
{
|
724
|
+
"fnName": "deleteapplication",
|
725
|
+
"method": "delete",
|
726
|
+
"path": "/beta/applications/{ApplicationId}"
|
727
|
+
},
|
728
|
+
{
|
729
|
+
"fnName": "performparallelGETS",
|
730
|
+
"method": "post",
|
731
|
+
"path": "/v1.0/$batch"
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"fnName": "createsubjectRightsRequest",
|
735
|
+
"method": "post",
|
736
|
+
"path": "/v1.0/privacy/subjectRightsRequests"
|
737
|
+
},
|
738
|
+
{
|
739
|
+
"fnName": "listsubjectRightsRequests",
|
740
|
+
"method": "get",
|
741
|
+
"path": "/v1.0/privacy/subjectRightsRequests"
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"fnName": "getsubjectRightsRequest",
|
745
|
+
"method": "get",
|
746
|
+
"path": "/v1.0/privacy/subjectRightsRequests/{subjectRightsRequestId}"
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"fnName": "subjectRightsRequestGetFinalReport",
|
750
|
+
"method": "get",
|
751
|
+
"path": "/v1.0/privacy/subjectRightsRequests/{subjectRightsRequestId}/getFinalReport"
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"fnName": "subjectRightsRequestGetFinalAttachment",
|
755
|
+
"method": "get",
|
756
|
+
"path": "/v1.0/privacy/subjectRightsRequests/{subjectRightsRequestId}/getFinalAttachment"
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"fnName": "createauthoredNote",
|
760
|
+
"method": "post",
|
761
|
+
"path": "/v1.0/privacy/subjectRightsRequests/{subjectRightsRequestId}/notes"
|
762
|
+
},
|
763
|
+
{
|
764
|
+
"fnName": "listnotes",
|
765
|
+
"method": "get",
|
766
|
+
"path": "/v1.0/privacy/subjectRightsRequests/{subjectRightsRequestId}/notes"
|
767
|
+
},
|
768
|
+
{
|
769
|
+
"fnName": "listretentionLabels",
|
770
|
+
"method": "get",
|
771
|
+
"path": "/beta/security/labels/retentionLabels"
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"fnName": "createretentionLabel",
|
775
|
+
"method": "post",
|
776
|
+
"path": "/beta/security/labels/retentionLabels"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"fnName": "getretentionLabel",
|
780
|
+
"method": "get",
|
781
|
+
"path": "/beta/security/labels/retentionLabels/{retentionLabelId}"
|
782
|
+
},
|
783
|
+
{
|
784
|
+
"fnName": "updateretentionLabel",
|
785
|
+
"method": "patch",
|
786
|
+
"path": "/beta/security/labels/retentionLabels/{retentionLabelId}"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"fnName": "deleterentionionLabel",
|
790
|
+
"method": "delete",
|
791
|
+
"path": "/beta/security/labels/retentionLabels/{retentionLabelId}"
|
792
|
+
},
|
793
|
+
{
|
794
|
+
"fnName": "listretentionEventTypes",
|
795
|
+
"method": "get",
|
796
|
+
"path": "/beta/security/triggerTypes/retentionEventTypes"
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"fnName": "getretentionEventType",
|
800
|
+
"method": "get",
|
801
|
+
"path": "/beta/security/triggerTypes/retentionEventTypes/{retentionEventTypeId}"
|
802
|
+
},
|
803
|
+
{
|
804
|
+
"fnName": "createretentionEvent",
|
805
|
+
"method": "post",
|
806
|
+
"path": "/beta/security/triggers/retentionEvents"
|
807
|
+
},
|
808
|
+
{
|
809
|
+
"fnName": "listretentionEvents",
|
810
|
+
"method": "get",
|
811
|
+
"path": "/beta/security/triggers/retentionEvents"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"fnName": "getretentionEvent",
|
815
|
+
"method": "get",
|
816
|
+
"path": "/beta/security/triggers/retentionEvents/{retentionEventId}"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"fnName": "getrooms",
|
820
|
+
"method": "get",
|
821
|
+
"path": "/beta/me/findRooms"
|
822
|
+
},
|
823
|
+
{
|
824
|
+
"fnName": "getmyeventsfornextweek",
|
825
|
+
"method": "get",
|
826
|
+
"path": "/v1.0/me/calendarview"
|
827
|
+
},
|
828
|
+
{
|
829
|
+
"fnName": "getmycalendars",
|
830
|
+
"method": "get",
|
831
|
+
"path": "/v1.0/me/calendars"
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"fnName": "addMicrosoftGraphcommunitycallevent",
|
835
|
+
"method": "post",
|
836
|
+
"path": "/v1.0/me/events"
|
837
|
+
},
|
838
|
+
{
|
839
|
+
"fnName": "getmyMicrosoftGraphcommunitycallevents",
|
840
|
+
"method": "get",
|
841
|
+
"path": "/v1.0/me/events"
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"fnName": "getmyfiles",
|
845
|
+
"method": "get",
|
846
|
+
"path": "/v1.0/me/drive/root/children"
|
847
|
+
},
|
848
|
+
{
|
849
|
+
"fnName": "createafolder",
|
850
|
+
"method": "post",
|
851
|
+
"path": "/v1.0/me/drive/root/children"
|
852
|
+
},
|
853
|
+
{
|
854
|
+
"fnName": "getmyrecentfiles",
|
855
|
+
"method": "get",
|
856
|
+
"path": "/v1.0/me/drive/recent"
|
857
|
+
},
|
858
|
+
{
|
859
|
+
"fnName": "getfilessharedwithme",
|
860
|
+
"method": "get",
|
861
|
+
"path": "/v1.0/me/drive/sharedWithMe"
|
862
|
+
},
|
863
|
+
{
|
864
|
+
"fnName": "searchmyOneDrive",
|
865
|
+
"method": "get",
|
866
|
+
"path": "/v1.0/me/drive/root/search(q='finance')"
|
867
|
+
},
|
868
|
+
{
|
869
|
+
"fnName": "getgroups",
|
870
|
+
"method": "get",
|
871
|
+
"path": "/v1.0/groups"
|
872
|
+
},
|
873
|
+
{
|
874
|
+
"fnName": "createagroupwithextension",
|
875
|
+
"method": "post",
|
876
|
+
"path": "/v1.0/groups"
|
877
|
+
},
|
878
|
+
{
|
879
|
+
"fnName": "getavaiableschemaextensions",
|
880
|
+
"method": "get",
|
881
|
+
"path": "/v1.0/schemaExtensions"
|
882
|
+
},
|
883
|
+
{
|
884
|
+
"fnName": "updateagroupwithextension",
|
885
|
+
"method": "patch",
|
886
|
+
"path": "/v1.0/groups/{GroupId}"
|
887
|
+
},
|
888
|
+
{
|
889
|
+
"fnName": "deleteteam",
|
890
|
+
"method": "delete",
|
891
|
+
"path": "/v1.0/groups/{GroupId}"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"fnName": "getitemstrendingaroundme",
|
895
|
+
"method": "get",
|
896
|
+
"path": "/beta/me/insights/trending"
|
897
|
+
},
|
898
|
+
{
|
899
|
+
"fnName": "getpeopleIMworkingwith",
|
900
|
+
"method": "get",
|
901
|
+
"path": "/beta/me/workingWith"
|
902
|
+
},
|
903
|
+
{
|
904
|
+
"fnName": "getmymessages",
|
905
|
+
"method": "get",
|
906
|
+
"path": "/v1.0/me/messages"
|
907
|
+
},
|
908
|
+
{
|
909
|
+
"fnName": "getmymessagesIMatmentionedin",
|
910
|
+
"method": "get",
|
911
|
+
"path": "/beta/me/messages"
|
912
|
+
},
|
913
|
+
{
|
914
|
+
"fnName": "getamessage",
|
915
|
+
"method": "get",
|
916
|
+
"path": "/v1.0/me/messages/{MessageId}"
|
917
|
+
},
|
918
|
+
{
|
919
|
+
"fnName": "getmymailboxrules",
|
920
|
+
"method": "get",
|
921
|
+
"path": "/v1.0/me/mailFolders/inbox/messagerules"
|
922
|
+
},
|
923
|
+
{
|
924
|
+
"fnName": "getmycategories",
|
925
|
+
"method": "get",
|
926
|
+
"path": "/v1.0/me/outlook/masterCategories"
|
927
|
+
},
|
928
|
+
{
|
929
|
+
"fnName": "sendmail",
|
930
|
+
"method": "post",
|
931
|
+
"path": "/v1.0/me/sendMail"
|
932
|
+
},
|
933
|
+
{
|
934
|
+
"fnName": "getmailboxsettings",
|
935
|
+
"method": "get",
|
936
|
+
"path": "/v1.0/me/mailboxSettings"
|
937
|
+
},
|
938
|
+
{
|
939
|
+
"fnName": "setautomaticreplies",
|
940
|
+
"method": "patch",
|
941
|
+
"path": "/v1.0/me/mailboxSettings"
|
942
|
+
},
|
943
|
+
{
|
944
|
+
"fnName": "getauserSmessages",
|
945
|
+
"method": "get",
|
946
|
+
"path": "/v1.0/users/{UserId}/messages"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"fnName": "getauserSmessage",
|
950
|
+
"method": "get",
|
951
|
+
"path": "/v1.0/users/{UserId}/messages/{MessageId}"
|
952
|
+
},
|
953
|
+
{
|
954
|
+
"fnName": "getmynotebooks",
|
955
|
+
"method": "get",
|
956
|
+
"path": "/v1.0/me/onenote/notebooks"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"fnName": "createnotebook",
|
960
|
+
"method": "post",
|
961
|
+
"path": "/v1.0/me/onenote/notebooks"
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"fnName": "getmynotebooksections",
|
965
|
+
"method": "get",
|
966
|
+
"path": "/v1.0/me/onenote/sections"
|
967
|
+
},
|
968
|
+
{
|
969
|
+
"fnName": "getmynotebookpages",
|
970
|
+
"method": "get",
|
971
|
+
"path": "/v1.0/me/onenote/pages"
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"fnName": "createsection",
|
975
|
+
"method": "post",
|
976
|
+
"path": "/v1.0/me/onenote/notebooks/{NotebookId}/sections"
|
977
|
+
},
|
978
|
+
{
|
979
|
+
"fnName": "getanopenextension",
|
980
|
+
"method": "get",
|
981
|
+
"path": "/v1.0/me"
|
982
|
+
},
|
983
|
+
{
|
984
|
+
"fnName": "createanopenextension",
|
985
|
+
"method": "post",
|
986
|
+
"path": "/v1.0/me/extensions"
|
987
|
+
},
|
988
|
+
{
|
989
|
+
"fnName": "updateanopenextension",
|
990
|
+
"method": "patch",
|
991
|
+
"path": "/v1.0/me/extensions/{ExtensionId}"
|
992
|
+
},
|
993
|
+
{
|
994
|
+
"fnName": "getmyjoinedteams",
|
995
|
+
"method": "get",
|
996
|
+
"path": "/v1.0/me/joinedTeams"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"fnName": "getmembersofateam",
|
1000
|
+
"method": "get",
|
1001
|
+
"path": "/v1.0/groups/{TeamId}/members"
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"fnName": "getchannelsofateam",
|
1005
|
+
"method": "get",
|
1006
|
+
"path": "/v1.0/teams/{TeamId}/channels"
|
1007
|
+
},
|
1008
|
+
{
|
1009
|
+
"fnName": "createchannel",
|
1010
|
+
"method": "post",
|
1011
|
+
"path": "/v1.0/teams/{TeamId}/channels"
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
"fnName": "getchannelinfo",
|
1015
|
+
"method": "get",
|
1016
|
+
"path": "/v1.0/teams/{TeamId}/channels/{ChannelId}"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"fnName": "createteam",
|
1020
|
+
"method": "post",
|
1021
|
+
"path": "/v1.0/teams"
|
1022
|
+
},
|
1023
|
+
{
|
1024
|
+
"fnName": "getappsinateam",
|
1025
|
+
"method": "get",
|
1026
|
+
"path": "/v1.0/teams/{TeamId}/installedApps"
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
"fnName": "gettabsinachannel",
|
1030
|
+
"method": "get",
|
1031
|
+
"path": "/v1.0/teams/{TeamId}/channels/{ChannelId}/tabs"
|
1032
|
+
},
|
1033
|
+
{
|
1034
|
+
"fnName": "getitemsinateamdrive",
|
1035
|
+
"method": "get",
|
1036
|
+
"path": "/v1.0/groups/{TeamId}/drive/root/children"
|
1037
|
+
},
|
1038
|
+
{
|
1039
|
+
"fnName": "getmessagesWithoutrepliesInachannelBeta",
|
1040
|
+
"method": "get",
|
1041
|
+
"path": "/beta/teams/{TeamId}/channels/{ChannelId}/messages"
|
1042
|
+
},
|
1043
|
+
{
|
1044
|
+
"fnName": "createaplaintextchatthreadBeta",
|
1045
|
+
"method": "post",
|
1046
|
+
"path": "/beta/teams/{TeamId}/channels/{ChannelId}/messages"
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
"fnName": "getamessageinachannelBeta",
|
1050
|
+
"method": "get",
|
1051
|
+
"path": "/beta/teams/{TeamId}/channels/{ChannelId}/messages/{MessageId}"
|
1052
|
+
},
|
1053
|
+
{
|
1054
|
+
"fnName": "getrepliestoamessageinachannelBeta",
|
1055
|
+
"method": "get",
|
1056
|
+
"path": "/beta/teams/{TeamId}/channels/{ChannelId}/messages/{MessageId}/replies"
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"fnName": "getareplyofamessageBeta",
|
1060
|
+
"method": "get",
|
1061
|
+
"path": "/beta/teams/{TeamId}/channels/{ChannelId}/messages/{MessageId}/replies/{ReplyId}"
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
"fnName": "getuserSjoinedteams",
|
1065
|
+
"method": "get",
|
1066
|
+
"path": "/v1.0/users/{UserId}/joinedTeams"
|
1067
|
+
},
|
1068
|
+
{
|
1069
|
+
"fnName": "getprimarychannel",
|
1070
|
+
"method": "get",
|
1071
|
+
"path": "/v1.0/teams/{GroupId}/primaryChannel"
|
1072
|
+
},
|
1073
|
+
{
|
1074
|
+
"fnName": "getteamchannels",
|
1075
|
+
"method": "get",
|
1076
|
+
"path": "/v1.0/teams/{GroupId}/channels"
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"fnName": "getteam",
|
1080
|
+
"method": "get",
|
1081
|
+
"path": "/v1.0/teams/{TeamId}"
|
1082
|
+
},
|
1083
|
+
{
|
1084
|
+
"fnName": "updateteam",
|
1085
|
+
"method": "patch",
|
1086
|
+
"path": "/v1.0/teams/{TeamId}"
|
1087
|
+
},
|
1088
|
+
{
|
1089
|
+
"fnName": "createteamfromgroup",
|
1090
|
+
"method": "put",
|
1091
|
+
"path": "/v1.0/groups/{GroupId}/team"
|
1092
|
+
},
|
1093
|
+
{
|
1094
|
+
"fnName": "postCreateteam",
|
1095
|
+
"method": "post",
|
1096
|
+
"path": "/v1.0/teams/{TeamId}/channels/{ChannelId}/members"
|
1097
|
+
},
|
1098
|
+
{
|
1099
|
+
"fnName": "archiveteam",
|
1100
|
+
"method": "post",
|
1101
|
+
"path": "/v1.0/teams/{TeamId}/archive"
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
"fnName": "cloneteam",
|
1105
|
+
"method": "post",
|
1106
|
+
"path": "/v1.0/teams/{TeamId}/clone"
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
"fnName": "unarchiveteam",
|
1110
|
+
"method": "post",
|
1111
|
+
"path": "/v1.0/teams/{TeamId}/unarchive"
|
1112
|
+
},
|
1113
|
+
{
|
1114
|
+
"fnName": "getpeople",
|
1115
|
+
"method": "get",
|
1116
|
+
"path": "/v1.0/me/people"
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
"fnName": "getauserSrelatedpeople",
|
1120
|
+
"method": "get",
|
1121
|
+
"path": "/v1.0/users('{UserName}')/people"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"fnName": "searchmessages",
|
1125
|
+
"method": "post",
|
1126
|
+
"path": "/beta/search/query"
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
"fnName": "listediscoveryCases",
|
1130
|
+
"method": "get",
|
1131
|
+
"path": "/v1.0/security/cases/ediscoveryCases"
|
1132
|
+
},
|
1133
|
+
{
|
1134
|
+
"fnName": "createediscoveryCase",
|
1135
|
+
"method": "post",
|
1136
|
+
"path": "/v1.0/security/cases/ediscoveryCases"
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
"fnName": "getediscoveryCase",
|
1140
|
+
"method": "get",
|
1141
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}"
|
1142
|
+
},
|
1143
|
+
{
|
1144
|
+
"fnName": "updateediscoveryCase",
|
1145
|
+
"method": "patch",
|
1146
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}"
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
"fnName": "createCustodians",
|
1150
|
+
"method": "post",
|
1151
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/custodians"
|
1152
|
+
},
|
1153
|
+
{
|
1154
|
+
"fnName": "listediscoveryCustodian",
|
1155
|
+
"method": "get",
|
1156
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/custodians"
|
1157
|
+
},
|
1158
|
+
{
|
1159
|
+
"fnName": "createcustodianuserSource",
|
1160
|
+
"method": "post",
|
1161
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/custodians/{custodianId}/userSources"
|
1162
|
+
},
|
1163
|
+
{
|
1164
|
+
"fnName": "listuserSources",
|
1165
|
+
"method": "get",
|
1166
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/custodians/{custodianId}/userSources"
|
1167
|
+
},
|
1168
|
+
{
|
1169
|
+
"fnName": "ediscoveryCustodianApplyHold",
|
1170
|
+
"method": "post",
|
1171
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/custodians/applyHold"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"fnName": "createediscoveryNoncustodialDataSources",
|
1175
|
+
"method": "post",
|
1176
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/noncustodialDataSources"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"fnName": "listediscoveryNoncustodialDataSources",
|
1180
|
+
"method": "get",
|
1181
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/noncustodialDataSources"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"fnName": "ediscoveryNoncustodialDataSourceApplyHold",
|
1185
|
+
"method": "post",
|
1186
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/noncustodialDataSources/applyHold"
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"fnName": "createsearches",
|
1190
|
+
"method": "post",
|
1191
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/searches"
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
"fnName": "listsearches",
|
1195
|
+
"method": "get",
|
1196
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/searches"
|
1197
|
+
},
|
1198
|
+
{
|
1199
|
+
"fnName": "ediscoverySearchEstimateStatistics",
|
1200
|
+
"method": "post",
|
1201
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/searches/{ediscoverySearchId}/estimateStatistics"
|
1202
|
+
},
|
1203
|
+
{
|
1204
|
+
"fnName": "listlastEstimateStatisticsOperation",
|
1205
|
+
"method": "get",
|
1206
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/searches/{ediscoverySearchId}/lastEstimateStatisticsOperation"
|
1207
|
+
},
|
1208
|
+
{
|
1209
|
+
"fnName": "createreviewSets",
|
1210
|
+
"method": "post",
|
1211
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/reviewSets"
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
"fnName": "listreviewSets",
|
1215
|
+
"method": "get",
|
1216
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/reviewSets"
|
1217
|
+
},
|
1218
|
+
{
|
1219
|
+
"fnName": "ediscoveryReviewSetAddToReviewSet",
|
1220
|
+
"method": "post",
|
1221
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/reviewSets/{ediscoveryReviewSetId}/addToReviewSet"
|
1222
|
+
},
|
1223
|
+
{
|
1224
|
+
"fnName": "createediscoveryReviewSetQuery",
|
1225
|
+
"method": "post",
|
1226
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/reviewSets/{ediscoveryReviewSetId}/queries"
|
1227
|
+
},
|
1228
|
+
{
|
1229
|
+
"fnName": "listqueries",
|
1230
|
+
"method": "get",
|
1231
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/reviewSets/{ediscoveryReviewSetId}/queries"
|
1232
|
+
},
|
1233
|
+
{
|
1234
|
+
"fnName": "updateediscoveryReviewSetQuery",
|
1235
|
+
"method": "patch",
|
1236
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/reviewSets/{ediscoveryReviewSetId}/queries/{ediscoveryReviewSetQueryId}"
|
1237
|
+
},
|
1238
|
+
{
|
1239
|
+
"fnName": "deleteediscoveryReviewSetQuery",
|
1240
|
+
"method": "delete",
|
1241
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/reviewSets/{ediscoveryReviewSetId}/queries/{ediscoveryReviewSetQueryId}"
|
1242
|
+
},
|
1243
|
+
{
|
1244
|
+
"fnName": "listcaseOperations",
|
1245
|
+
"method": "get",
|
1246
|
+
"path": "/v1.0/security/cases/ediscoveryCases/{ediscoveryCaseId}/operations"
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
"fnName": "getalerts",
|
1250
|
+
"method": "get",
|
1251
|
+
"path": "/v1.0/security/alerts"
|
1252
|
+
},
|
1253
|
+
{
|
1254
|
+
"fnName": "getsecurescores",
|
1255
|
+
"method": "get",
|
1256
|
+
"path": "/v1.0/security/secureScores"
|
1257
|
+
},
|
1258
|
+
{
|
1259
|
+
"fnName": "getsecurescorescontrolprofiles",
|
1260
|
+
"method": "get",
|
1261
|
+
"path": "/beta/security/secureScoreControlProfiles"
|
1262
|
+
},
|
1263
|
+
{
|
1264
|
+
"fnName": "getTIindicators",
|
1265
|
+
"method": "get",
|
1266
|
+
"path": "/beta/security/tiIndicators"
|
1267
|
+
},
|
1268
|
+
{
|
1269
|
+
"fnName": "getTIindicatorbyid",
|
1270
|
+
"method": "get",
|
1271
|
+
"path": "/beta/security/tiIndicators/{TIIndicatorId}"
|
1272
|
+
},
|
1273
|
+
{
|
1274
|
+
"fnName": "getsecurityactions",
|
1275
|
+
"method": "get",
|
1276
|
+
"path": "/beta/security/securityActions"
|
1277
|
+
},
|
1278
|
+
{
|
1279
|
+
"fnName": "getsecurityactionbyid",
|
1280
|
+
"method": "get",
|
1281
|
+
"path": "/beta/security/securityActions/{SecurityActionsId}"
|
1282
|
+
},
|
1283
|
+
{
|
1284
|
+
"fnName": "getmyorganizationSdefaultsitecollection",
|
1285
|
+
"method": "get",
|
1286
|
+
"path": "/v1.0/sites/root"
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"fnName": "getthedoclibsinrootsite",
|
1290
|
+
"method": "get",
|
1291
|
+
"path": "/v1.0/sites/root/drives"
|
1292
|
+
},
|
1293
|
+
{
|
1294
|
+
"fnName": "searchforsitebyname",
|
1295
|
+
"method": "get",
|
1296
|
+
"path": "/v1.0/sites"
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
"fnName": "getsubsitesofsite",
|
1300
|
+
"method": "get",
|
1301
|
+
"path": "/v1.0/sites/root/sites"
|
1302
|
+
},
|
1303
|
+
{
|
1304
|
+
"fnName": "getsitecolumns",
|
1305
|
+
"method": "get",
|
1306
|
+
"path": "/v1.0/sites/root/columns"
|
1307
|
+
},
|
1308
|
+
{
|
1309
|
+
"fnName": "getsitecontenttypes",
|
1310
|
+
"method": "get",
|
1311
|
+
"path": "/v1.0/sites/root/contentTypes"
|
1312
|
+
},
|
1313
|
+
{
|
1314
|
+
"fnName": "getsitelists",
|
1315
|
+
"method": "get",
|
1316
|
+
"path": "/v1.0/sites/root/lists"
|
1317
|
+
},
|
1318
|
+
{
|
1319
|
+
"fnName": "getlistcolumns",
|
1320
|
+
"method": "get",
|
1321
|
+
"path": "/v1.0/sites/root/lists/{ListId}/columns"
|
1322
|
+
},
|
1323
|
+
{
|
1324
|
+
"fnName": "getlistcontenttypes",
|
1325
|
+
"method": "get",
|
1326
|
+
"path": "/v1.0/sites/root/lists/{ListId}/contentTypes"
|
1327
|
+
},
|
1328
|
+
{
|
1329
|
+
"fnName": "getlistitems",
|
1330
|
+
"method": "get",
|
1331
|
+
"path": "/v1.0/sites/root/lists/{ListId}/items"
|
1332
|
+
},
|
1333
|
+
{
|
1334
|
+
"fnName": "getsubscriptions",
|
1335
|
+
"method": "get",
|
1336
|
+
"path": "/v1.0/subscriptions"
|
1337
|
+
},
|
1338
|
+
{
|
1339
|
+
"fnName": "updatesubscription",
|
1340
|
+
"method": "patch",
|
1341
|
+
"path": "/v1.0/subscriptions/{SubscriptionId}"
|
1342
|
+
},
|
1343
|
+
{
|
1344
|
+
"fnName": "createsubscription",
|
1345
|
+
"method": "post",
|
1346
|
+
"path": "/beta/subscriptions"
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
"fnName": "getPlannertasks",
|
1350
|
+
"method": "get",
|
1351
|
+
"path": "/v1.0/me/planner/tasks"
|
1352
|
+
},
|
1353
|
+
{
|
1354
|
+
"fnName": "getPlannertasksforauser",
|
1355
|
+
"method": "get",
|
1356
|
+
"path": "/v1.0/users/{UserName}/planner/tasks"
|
1357
|
+
},
|
1358
|
+
{
|
1359
|
+
"fnName": "getPlannerplansassociatedwithgroup",
|
1360
|
+
"method": "get",
|
1361
|
+
"path": "/v1.0/groups/{GroupId}/planner/plans"
|
1362
|
+
},
|
1363
|
+
{
|
1364
|
+
"fnName": "getplan",
|
1365
|
+
"method": "get",
|
1366
|
+
"path": "/v1.0/planner/plans/{PlanId}"
|
1367
|
+
},
|
1368
|
+
{
|
1369
|
+
"fnName": "updateplan",
|
1370
|
+
"method": "patch",
|
1371
|
+
"path": "/v1.0/planner/plans/{PlanId}"
|
1372
|
+
},
|
1373
|
+
{
|
1374
|
+
"fnName": "getplanbuckets",
|
1375
|
+
"method": "get",
|
1376
|
+
"path": "/v1.0/planner/plans/{PlanId}/buckets"
|
1377
|
+
},
|
1378
|
+
{
|
1379
|
+
"fnName": "createabucketinaplan",
|
1380
|
+
"method": "post",
|
1381
|
+
"path": "/v1.0/planner/buckets"
|
1382
|
+
},
|
1383
|
+
{
|
1384
|
+
"fnName": "updateabucket",
|
1385
|
+
"method": "patch",
|
1386
|
+
"path": "/v1.0/planner/buckets/{BucketId}"
|
1387
|
+
},
|
1388
|
+
{
|
1389
|
+
"fnName": "getPlannertasksforaplan",
|
1390
|
+
"method": "get",
|
1391
|
+
"path": "/v1.0/planner/plans/{PlanId}/tasks"
|
1392
|
+
},
|
1393
|
+
{
|
1394
|
+
"fnName": "getPlannertaskbyid",
|
1395
|
+
"method": "get",
|
1396
|
+
"path": "/v1.0/planner/tasks/{TaskId}"
|
1397
|
+
},
|
1398
|
+
{
|
1399
|
+
"fnName": "updateaPlannertask",
|
1400
|
+
"method": "patch",
|
1401
|
+
"path": "/v1.0/planner/tasks/{TaskId}"
|
1402
|
+
},
|
1403
|
+
{
|
1404
|
+
"fnName": "createaPlannertask",
|
1405
|
+
"method": "post",
|
1406
|
+
"path": "/v1.0/planner/tasks"
|
1407
|
+
},
|
1408
|
+
{
|
1409
|
+
"fnName": "getPlannertaskdetails",
|
1410
|
+
"method": "get",
|
1411
|
+
"path": "/v1.0/planner/tasks/{TaskId}/details"
|
1412
|
+
},
|
1413
|
+
{
|
1414
|
+
"fnName": "getmyToDolists",
|
1415
|
+
"method": "get",
|
1416
|
+
"path": "/v1.0/me/todo/lists"
|
1417
|
+
},
|
1418
|
+
{
|
1419
|
+
"fnName": "createaToDolist",
|
1420
|
+
"method": "post",
|
1421
|
+
"path": "/v1.0/me/todo/lists"
|
1422
|
+
},
|
1423
|
+
{
|
1424
|
+
"fnName": "getmyToDolist",
|
1425
|
+
"method": "get",
|
1426
|
+
"path": "/v1.0/me/todo/lists/{TaskListId}"
|
1427
|
+
},
|
1428
|
+
{
|
1429
|
+
"fnName": "updateaToDolist",
|
1430
|
+
"method": "patch",
|
1431
|
+
"path": "/v1.0/me/todo/lists/{TaskListId}"
|
1432
|
+
},
|
1433
|
+
{
|
1434
|
+
"fnName": "deleteaToDolist",
|
1435
|
+
"method": "delete",
|
1436
|
+
"path": "/v1.0/me/todo/lists/{TaskListId}"
|
1437
|
+
},
|
1438
|
+
{
|
1439
|
+
"fnName": "getmyToDolisttasks",
|
1440
|
+
"method": "get",
|
1441
|
+
"path": "/v1.0/me/todo/lists/{TaskListId}/tasks"
|
1442
|
+
},
|
1443
|
+
{
|
1444
|
+
"fnName": "createaToDotaskinalist",
|
1445
|
+
"method": "post",
|
1446
|
+
"path": "/v1.0/me/todo/lists/{TaskListId}/tasks"
|
1447
|
+
},
|
1448
|
+
{
|
1449
|
+
"fnName": "updateaToDotaskinalist",
|
1450
|
+
"method": "patch",
|
1451
|
+
"path": "/v1.0/me/todo/lists/{TaskListId}/tasks/{TaskId}"
|
1452
|
+
},
|
1453
|
+
{
|
1454
|
+
"fnName": "deleteaToDotaskinalist",
|
1455
|
+
"method": "delete",
|
1456
|
+
"path": "/v1.0/me/todo/lists/{TaskListId}/tasks/{TaskId}"
|
1457
|
+
},
|
1458
|
+
{
|
1459
|
+
"fnName": "getmyaboutme",
|
1460
|
+
"method": "get",
|
1461
|
+
"path": "/v1.0/me/aboutMe"
|
1462
|
+
},
|
1463
|
+
{
|
1464
|
+
"fnName": "getmymanager",
|
1465
|
+
"method": "get",
|
1466
|
+
"path": "/v1.0/me/manager"
|
1467
|
+
},
|
1468
|
+
{
|
1469
|
+
"fnName": "getmydirectreports",
|
1470
|
+
"method": "get",
|
1471
|
+
"path": "/v1.0/me/directReports"
|
1472
|
+
},
|
1473
|
+
{
|
1474
|
+
"fnName": "getmygroups",
|
1475
|
+
"method": "get",
|
1476
|
+
"path": "/v1.0/me/memberOf"
|
1477
|
+
},
|
1478
|
+
{
|
1479
|
+
"fnName": "getmyphoto",
|
1480
|
+
"method": "get",
|
1481
|
+
"path": "/v1.0/me/photo/$value"
|
1482
|
+
},
|
1483
|
+
{
|
1484
|
+
"fnName": "getusers",
|
1485
|
+
"method": "get",
|
1486
|
+
"path": "/v1.0/users"
|
1487
|
+
},
|
1488
|
+
{
|
1489
|
+
"fnName": "getuserSprofilebyemail",
|
1490
|
+
"method": "get",
|
1491
|
+
"path": "/v1.0/users/{UserName}"
|
1492
|
+
},
|
1493
|
+
{
|
1494
|
+
"fnName": "getauserSprofilebyid",
|
1495
|
+
"method": "get",
|
1496
|
+
"path": "/v1.0/users/{UserId}"
|
1497
|
+
},
|
1498
|
+
{
|
1499
|
+
"fnName": "getauserSphoto",
|
1500
|
+
"method": "get",
|
1501
|
+
"path": "/v1.0/users/{UserId}/photo/$value"
|
1502
|
+
},
|
1503
|
+
{
|
1504
|
+
"fnName": "inviteaguestuser",
|
1505
|
+
"method": "post",
|
1506
|
+
"path": "/v1.0/invitations"
|
1507
|
+
},
|
1508
|
+
{
|
1509
|
+
"fnName": "listcatalogentries",
|
1510
|
+
"method": "get",
|
1511
|
+
"path": "/beta/admin/windows/updates/catalog/entries"
|
1512
|
+
},
|
1513
|
+
{
|
1514
|
+
"fnName": "listmembers",
|
1515
|
+
"method": "get",
|
1516
|
+
"path": "/beta/admin/windows/updates/deployments/{DeploymentId}/audience/members"
|
1517
|
+
},
|
1518
|
+
{
|
1519
|
+
"fnName": "listexclusions",
|
1520
|
+
"method": "get",
|
1521
|
+
"path": "/beta/admin/windows/updates/deployments/{DeploymentId}/audience/exclusions"
|
1522
|
+
},
|
1523
|
+
{
|
1524
|
+
"fnName": "updateaudienceAddmembers",
|
1525
|
+
"method": "post",
|
1526
|
+
"path": "/beta/admin/windows/updates/deployments/{DeploymentId}/audience/updateAudience"
|
1527
|
+
},
|
1528
|
+
{
|
1529
|
+
"fnName": "createdeploymentFeatureupdate",
|
1530
|
+
"method": "post",
|
1531
|
+
"path": "/beta/admin/windows/updates/deployments"
|
1532
|
+
},
|
1533
|
+
{
|
1534
|
+
"fnName": "listdeployments",
|
1535
|
+
"method": "get",
|
1536
|
+
"path": "/beta/admin/windows/updates/deployments"
|
1537
|
+
},
|
1538
|
+
{
|
1539
|
+
"fnName": "getdeployment",
|
1540
|
+
"method": "get",
|
1541
|
+
"path": "/beta/admin/windows/updates/deployments/{DeploymentId}"
|
1542
|
+
},
|
1543
|
+
{
|
1544
|
+
"fnName": "updatedeploymentReplacemonitoringrules",
|
1545
|
+
"method": "patch",
|
1546
|
+
"path": "/beta/admin/windows/updates/deployments/{DeploymentId}"
|
1547
|
+
},
|
1548
|
+
{
|
1549
|
+
"fnName": "deletedeployment",
|
1550
|
+
"method": "delete",
|
1551
|
+
"path": "/beta/admin/windows/updates/deployments/{DeploymentId}"
|
1552
|
+
},
|
1553
|
+
{
|
1554
|
+
"fnName": "listAzureADdevices",
|
1555
|
+
"method": "get",
|
1556
|
+
"path": "/beta/admin/windows/updates/updatableAssets"
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
"fnName": "getAzureADdevice",
|
1560
|
+
"method": "get",
|
1561
|
+
"path": "/beta/admin/windows/updates/updatableAssets/{UpdatableAssetId}"
|
1562
|
+
},
|
1563
|
+
{
|
1564
|
+
"fnName": "deleteAzureADdevice",
|
1565
|
+
"method": "delete",
|
1566
|
+
"path": "/beta/admin/windows/updates/deployments/{UpdatableAssetId}"
|
1567
|
+
},
|
1568
|
+
{
|
1569
|
+
"fnName": "enrollinfeatureupdatemanagement",
|
1570
|
+
"method": "post",
|
1571
|
+
"path": "/beta/admin/windows/updates/updatableAssets/enrollAssets"
|
1572
|
+
},
|
1573
|
+
{
|
1574
|
+
"fnName": "unenrollfromfeatureupdatemanagement",
|
1575
|
+
"method": "post",
|
1576
|
+
"path": "/beta/admin/windows/updates/updatableAssets/unenrollAssets"
|
1577
|
+
},
|
1578
|
+
{
|
1579
|
+
"fnName": "getallconnections",
|
1580
|
+
"method": "get",
|
1581
|
+
"path": "/v1.0/external/connections"
|
1582
|
+
},
|
1583
|
+
{
|
1584
|
+
"fnName": "createconnection",
|
1585
|
+
"method": "post",
|
1586
|
+
"path": "/v1.0/external/connections"
|
1587
|
+
},
|
1588
|
+
{
|
1589
|
+
"fnName": "getconnection",
|
1590
|
+
"method": "get",
|
1591
|
+
"path": "/v1.0/external/connections/sampleConnectionId"
|
1592
|
+
},
|
1593
|
+
{
|
1594
|
+
"fnName": "deleteconnection",
|
1595
|
+
"method": "delete",
|
1596
|
+
"path": "/v1.0/external/connections/sampleConnectionId"
|
1597
|
+
},
|
1598
|
+
{
|
1599
|
+
"fnName": "registerschema",
|
1600
|
+
"method": "post",
|
1601
|
+
"path": "/v1.0/external/connections/sampleConnectionId/schema"
|
1602
|
+
},
|
1603
|
+
{
|
1604
|
+
"fnName": "getschema",
|
1605
|
+
"method": "get",
|
1606
|
+
"path": "/v1.0/external/connections/sampleConnectionId/schema"
|
1607
|
+
},
|
1608
|
+
{
|
1609
|
+
"fnName": "getconnectionoperationstatus",
|
1610
|
+
"method": "get",
|
1611
|
+
"path": "/"
|
1612
|
+
},
|
1613
|
+
{
|
1614
|
+
"fnName": "putitem",
|
1615
|
+
"method": "put",
|
1616
|
+
"path": "/v1.0/external/connections/sampleConnectionId/items/sampleItemId"
|
1617
|
+
},
|
1618
|
+
{
|
1619
|
+
"fnName": "getitem",
|
1620
|
+
"method": "get",
|
1621
|
+
"path": "/v1.0/external/connections/sampleConnectionId/items/sampleItemId"
|
1622
|
+
},
|
1623
|
+
{
|
1624
|
+
"fnName": "deleteitem",
|
1625
|
+
"method": "delete",
|
1626
|
+
"path": "/v1.0/external/connections/sampleConnectionId/items/sampleItemId"
|
1627
|
+
},
|
1628
|
+
{
|
1629
|
+
"fnName": "creategroup",
|
1630
|
+
"method": "post",
|
1631
|
+
"path": "/v1.0/external/connections/sampleConnectionId/groups"
|
1632
|
+
},
|
1633
|
+
{
|
1634
|
+
"fnName": "getgroup",
|
1635
|
+
"method": "get",
|
1636
|
+
"path": "/v1.0/external/connections/sampleConnectionId/groups/graphConnectorGroupId"
|
1637
|
+
},
|
1638
|
+
{
|
1639
|
+
"fnName": "deletegroup",
|
1640
|
+
"method": "delete",
|
1641
|
+
"path": "/v1.0/external/connections/sampleConnectionId/groups/graphConnectorGroupId"
|
1642
|
+
},
|
1643
|
+
{
|
1644
|
+
"fnName": "addAADuserasmember",
|
1645
|
+
"method": "post",
|
1646
|
+
"path": "/v1.0/external/connections/sampleConnectionId/groups/graphConnectorGroupId/members"
|
1647
|
+
},
|
1648
|
+
{
|
1649
|
+
"fnName": "removemember",
|
1650
|
+
"method": "delete",
|
1651
|
+
"path": "/v1.0/external/connections/sampleConnectionId/groups/graphConnectorGroupId/members/childGraphConnectorGroupId"
|
1652
|
+
},
|
1653
|
+
{
|
1654
|
+
"fnName": "getteammembers",
|
1655
|
+
"method": "get",
|
1656
|
+
"path": "/v1.0/teams/{GroupId}/members"
|
1657
|
+
},
|
1658
|
+
{
|
1659
|
+
"fnName": "addteammember",
|
1660
|
+
"method": "post",
|
1661
|
+
"path": "/v1.0/teams/{GroupId}/members"
|
1662
|
+
},
|
1663
|
+
{
|
1664
|
+
"fnName": "getsingleteammember",
|
1665
|
+
"method": "get",
|
1666
|
+
"path": "/v1.0/teams/{GroupId}/members/{UserId}"
|
1667
|
+
},
|
1668
|
+
{
|
1669
|
+
"fnName": "updateteammember",
|
1670
|
+
"method": "patch",
|
1671
|
+
"path": "/v1.0/teams/{GroupId}/members/{UserId}"
|
1672
|
+
},
|
1673
|
+
{
|
1674
|
+
"fnName": "getchannelmembers",
|
1675
|
+
"method": "get",
|
1676
|
+
"path": "/v1.0/teams/{GroupId}/channels/{ChannelId}/members"
|
1677
|
+
},
|
1678
|
+
{
|
1679
|
+
"fnName": "removeteammember",
|
1680
|
+
"method": "delete",
|
1681
|
+
"path": "/v1.0/teams/{TeamId}/members/{UserId}"
|
1682
|
+
},
|
1683
|
+
{
|
1684
|
+
"fnName": "removechannelmember",
|
1685
|
+
"method": "delete",
|
1686
|
+
"path": "/v1.0/teams/{TeamId}/channels/{ChannelId}members/{UserId}"
|
1687
|
+
},
|
1688
|
+
{
|
1689
|
+
"fnName": "updatechannelmember",
|
1690
|
+
"method": "patch",
|
1691
|
+
"path": "/v1.0/teams/{GroupId}/channels/{ChannelId}/members/{UserId}"
|
1692
|
+
},
|
1693
|
+
{
|
1694
|
+
"fnName": "subscriptionvalidation",
|
1695
|
+
"method": "post",
|
1696
|
+
"path": "/notification"
|
1697
|
+
},
|
1698
|
+
{
|
1699
|
+
"fnName": "v10Metadata",
|
1700
|
+
"method": "get",
|
1701
|
+
"path": "/v1.0/$metadata"
|
1702
|
+
},
|
1703
|
+
{
|
1704
|
+
"fnName": "betaMetadata",
|
1705
|
+
"method": "get",
|
1706
|
+
"path": "/beta/$metadata"
|
1707
|
+
}
|
1708
|
+
],
|
1709
|
+
"errors": [],
|
1710
|
+
"warnings": [],
|
1711
|
+
"callsTotal": 202,
|
1712
|
+
"callsConverted": 202,
|
1713
|
+
"no_mockdata_num": 202
|
1714
|
+
}
|
1715
|
+
}
|