We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fa8c1d commit 614949fCopy full SHA for 614949f
1 file changed
Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-ExecDeviceAction.ps1
@@ -38,6 +38,15 @@ function Invoke-ExecDeviceAction {
38
Write-Host "ActionBody: $ActionBody"
39
break
40
}
41
+ 'createDeviceLogCollectionRequest' {
42
+ $ActionBody = @{
43
+ templateType = @{
44
+ '@odata.type' = '#microsoft.graph.deviceLogCollectionRequest'
45
+ templateType = 'predefined'
46
+ }
47
+ } | ConvertTo-Json -Compress -Depth 5
48
+ break
49
50
default { $ActionBody = $Request.Body | ConvertTo-Json -Compress }
51
52
0 commit comments